Problems understanding authorization

Hi everybody, I'm having problems in understanding how to authorize my program to perform privileged tasks.
I read the apple documentation and wrote this piece of code:
AuthorizationRef auth;
OSStatus os;
AuthorizationRights rights;
AuthorizationItem item;
AuthorizationFlags flags;
os = AuthorizationCreate(NULL, kAuthorizationEmptyEnvironment, kAuthorizationFlagDefaults, &auth);
item.name = "com.Me.myApp.test";
item.valueLength = 0;
item.value = NULL;
item.flags = 0;
rights.count = 1;
rights.items = &item;
flags = kAuthorizationFlagDefaults |
kAuthorizationFlagInteractionAllowed |
kAuthorizationFlagExtendRights;
os = AuthorizationCopyRights (auth, &rights, kAuthorizationEmptyEnvironment, flags, NULL);
after calling AuthorizationCopyRights I should be able to perform privileged tasks, right? Is there still something I've got to do?

etresoft wrote:
No. I mean you should study that documentation and figure out exactly what you want to do and the best way to go about it. You don't want to mess around with root access unless you know precisely what you are doing. I have seen programs that abused that privilege and caused me to have to reinstall unrelated 3rd party software that was inadvertently altered by an installer.
I've read that documentation 6 or 7 times, but it does explain only the concepts behind authorization (the Security Server, authentication without rights, naming the rights, credential cache and so on) while it's not such clear talking about code. What I need now is understand how it works. I've downloaded all the related sample code but I've found it filled with glue code, so that I didn't managed to understand what it really does. I'd prefer a bare code that actually does nothing useful rather than complete programs that does many things but don't let me understand the essentials.
Besides, what I'm trying to do is exactly to figure out the best way to solve my problem, but how can I choose the best way if I do not get where this way leads me to? I thought it was clear that my intention was not to acquire root privileges or to use AuthorizationExecuteWithPrivileges just to print a couple of strings or to execute an helloworld. I think it's obvious that root privileges should be used only if there's no other way, but I just want to understand how it works. It think it's absurd that, in order to understand that, I have to open low numbered ports!
Documentation says +The Security Server creates the file, opens it for reading and writing, and connects it to the tool’s standard input and output+. All right then, let's try. I executed ls and, reading the file, I found the output. Wonderful! Let's try with a custom program. Blank. So there's something I do not get. What? Mystery. I ask and the answer is "study the documentation".
I have never used a communication pipe when using AuthorizationExecuteWithPrivileges. I have never even released a program using AuthorizationExecuteWithPrivileges.
So maybe it would be easier to say "I don't know".
The best solution is not to use that function. The 2nd best solution is not to try to communicate with the tool you are executing. The third best solution is to study the documentation and example programs in order to learn how to do it correctly.
Probably you're right, probably the best solution is not to use that function. Probably it worths the effort to understand why. Even if the only result is that I'll be able to say "hey, that guy on the forum was right, let's find another way".
Well, except this, I have to thank you, your help has been useful this far.

Similar Messages

  • Problem of authorization in java system

    Hi all
    I have a problem of authorization.
    I have two sap system: SAP ERP, SAP Netweaver 2004s (only java).
    In my sap ERP I have configured some web services.
    Now I would use those web services from my Netweaver , so I execute those step:
    From sap erp:
    Transaction soamanagerlogon on sap erp  u201CBusiness Administrationu201D  Tab Page  u201Cweb Service Administrationu201D link choose my WS  link u201COpen Web Service navigator for selected bindingu201D now appear a login screen.
    I have created a user u201Cprovau201D with role and group everyone in the java system.
    When I try to login with user u201Cprovau201D the error message u201CYou donu2019t have authorization u2026u201D appear
    I Would know if exist something to Know the authorization to use that service to add at the user u201Cpippou201D.
    Thank you for collaboration     
    Best regards
    giovanni

    HI Thulasi
    thank you for your response.
    I opened  my browser on http://<my ip>:50000/index.html of the java system, I have choose "User Management" and
    selected my user but I didn't find the role "WSnavigator" . The roles that I have in the java system are:
    Administrator     
    CAFAdmin          
    CAFDeveloper     
    CAFUIAdmin
    Everyone
    SAP_ARCH_SUPERADMIN
    SAP_ARCH_XMLDAS_VIEW     
    SAP_JAVA_NWADMIN_CENTRAL                    
    SAP_JAVA_NWADMIN_CENTRAL_READONLY
    SAP_JAVA_NWADMIN_LOCAL
    SAP_JAVA_NWADMIN_LOCAL_READONLY     
    SAP_JAVA_SUPPORT
    Must I choose this role from visual administrator?
    Thank you for collaboration.
    Best regards
    giovanni

  • SSRS 2008 R2 Problem understanding View State Validation steps

    Hi,
    Sorry, but I have some problem understanding this steps. Please help me to understand this. 
    Pasted from
    http://technet.microsoft.com/en-us/library/cc281307.aspx?lc=1033
    How to Configure View State Validation
    To run a scale-out deployment on an NLB cluster, you must configure view state validation so that users can view interactive HTML reports. You must do this for the report server and for Report Manager.
    View state validation is controlled by the ASP.NET. By default, view state validation is enabled and uses the identity of the Web service to perform the validation. However, in an NLB cluster scenario, there are multiple service instances
    and web service identities that run on different computers. Because the service identity varies for each node, you cannot rely on a single process identity to perform the validation.
    To work around this issue, you can generate an arbitrary validation key to support view state validation, and then manually configure each report server node to use the same key. You can use any randomly generated hexadecimal sequence.
    The validation algorithm (such as SHA1) determines how long the hexadecimal sequence must be.
    Generate a validation key and decryption key by using the autogenerate functionality provided by the .NET Framework.
    (Well, how to generate Validation key using .Net Framework?) In the end, you must have a single <machineKey> entry that you can
    paste into the Web.config file for each Report Manager instance in the scale-out deployment.  
    The following example provides an illustration of the value you must obtain. Do not copy the example into your configuration files; the key values are not valid.
    Copy Code
    <machineKey validationKey="123455555" decryptionKey="678999999" validation="SHA1" decryption="AES"/>
    Open the Web.config file for Report Manager, and in the <system.web> section paste the <machineKey> element that you generated. By default, the Report Manager
    Web.config file is located in \Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\Web.config.
    Save the file.
    Repeat the previous step for each report server in the scale-out deployment. 
    (Do I need to repeat all 3 previous steps?)
    Verify that all Web.Config files in the \Reporting Services\Report Manager folders contain identical <machineKey> elements in the <system.web> section.
    Thanks

    Jerry,
    Thanks for the reply.
    From the above View State Validation Steps,
    For 1st step , how to generate validation key using .Net Framework?
    for 4th step, Do I need to repeate all 3 previous steps?
    Thanks
    Kp

  • I have problems to authorize my PC in DIgital Editions...I have an ID and Password in Adobe site, but this don´t work. I need to open a book in my library asap.

    I have problems to authorize my PC in DIgital Editions...I have an ID and Password in Adobe site, but this don´t work. I need to open a book in my library asap.

    If you had given us sensible information, I could look it up for you if your efforts fail.
    Right now, I don't even know if you are on a Mac or on a Windows box.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Unexpected problem with authorization scheme of type plsql function

    Hi,
    I have created one authorization scheme of type plsql function returning boolean. Authorization scheme is for pages only. p2_user_priviledge is a textbox on home page which extract privilege (list of pagenos) for login user from database. Home page has no authorization required. AUTHORIZATION SCHEME always returns false. I am not able to trace problem in my code. same code works fine for a textbox's default returning 'c'.
    ----- CODE FOR AUTHORIZATION SCHEME------------------------------------------------------------
    declare
    pageid varchar2(10);
    privilege varchar2(300);
    c number(3);
    begin
    pageid := ':P'||to_char(:app_page_id)||':' ; ---Pageno get stored in format  *:P2:*
    privilege := trim(:p2_user_priviledge); ++------Contain list of privilege like    :P2:P13:P67:P23:  etc+++ select instr(privilege,pageid) into c from dual;
    if c>0 then
    return true;
    else
    return false;
    end if;
    end;
    One more problem is again related to authorization scheme.
    I created one application and one authorization scheme (auth_aug) which worked finely. Then after some days i added 10 more pages to same application, But now autho_aug was always returning false for new pages. So i copied code from 'autho_aug' to new scheme 'autho_sept', & it worked for new pages. I don't understand if code is same for both scheme, why required to use two different schemes.
    Now i have added few more pages to application, and facing problem mentioned earlier.
    any solution for both the problems.....

    Hi,
    Let me clear my problem once again.
    -->Home page i.e. P2 does not use authorization, So it is displayed along with text item :p2_user_privilege.
    -->Then user click on one of the links , Now page :P70: should get displayed.
    P70 is using authorization scheme.
    -->But :p2_user_priviledge value is not accessible at authorization scheme, I dont know why.
    I could not find out where to create Application item , as suggested by you.
    & not able to find Developer menu , session at home page as suggested earlier.
    And one more question, my application at runtime display
    X en us
    at bottom
    How to make it
    USER: X Language: en us
    Like in development environment.
    Hope I have cleared my problem, waiting for reply.
    Edited by: TEJU on Nov 17, 2008 9:25 AM

  • Problem with Authorization for Planning folder

    Hi an having a problem with providing authorization for a planning folder
    i am getting the following error when i test it with test user
    Error while calling up RFC
    Message no. UPC202
    Diagnosis
    You have selected a function, to execute this the system must set up an RFC connection to another SAP System. However, setting up this connection was not successful. The following internal error message was generated:
    "You do not have authorization for InfoCube ZT_MR_T "
    Procedure
    Inform the system administrator.
    we are not pulling the data from any other server, all the data is on the sif any one has faced the same issue let me know.
    Regards,
    Abraham

    Calling Thru Trans code: BPS0 in ECC 6
    getting this error:
    Error while calling up RFC
    Message No. UPC202
    Diagnosis
    You have selected a function, to execute this the system must set up an RFC connection to another SAP System. However, setting up this connection was not successful. The following internal error message was generated:
    "An error occurred during the receipt of a complex parameter."
    after i check in bw trans code:st22
    Following this error message:
    Category                   Internal Kernel Error
    Runtime Errors         PARAMETER_CONVERSION_ERROR
    Application Component  BC-MID-RFC
    Short text
        An error occurred during the receipt of a complex parameter.
    What happened?
        During a remote function call, an error occurred while converting
        a complex parameter.
    What can you do?
        Note which actions and input led to the error.
        For further help in handling the problem, contact your SAP administrator
        You can use the ABAP dump analysis transaction ST22 to view and manage
        termination messages, in particular for long term reference.
    Error analysis
        An error occurred during the conversion of a complex parameter.

  • Problem with Authorization for BW BPS planning Folder

    Hi an having a problem with providing authorization for a planning folder
    i am getting the following error when i test it with test user
    Error while calling up RFC
    Message no. UPC202
    Diagnosis
    You have selected a function, to execute this the system must set up an RFC connection to another SAP System. However, setting up this connection was not successful. The following internal error message was generated:
    "You do not have authorization for InfoCube ZT_MR_T "
    Procedure
    Inform the system administrator.
    if any one has faced the same issue let me know.
    Regards,
    Abraham

    HI ,
    I Checked it out we dont have that cube in our system.
    Regards,
    Abraham

  • Problems understanding open text for access, please help

    Hi all,
    I'm experiencing some problems with this script, and I think knowing what the error is will help me a lot to understand better how applescript handles access to files.
    When i launch this script it tells me somethihng like "document some object has not been opened" (could be slightly different in english).
    So, i guess is a problem with openening and closing, but as you can see i open and close the doc, so I shouldn't encounter this problem. Do I?
    Thanks for any tip!
    set Report to "myfile.txt"
    -- in case previously not closed I'll close again
    try
      close access Report
    end try
    set the_file to (open for access Report with write permission)
    write return to the_file starting at eof
    write "test" to the_file
    write return to the_file
    write return to the_file
    close access the_file
    repeat with numero from 1 to 3
      write numero to the_file starting at eof
      write return to the_file
      write return to the_file
      close access the_file
    end repeat

    Each time your application is run the files associated with it will also be released, so all you need to do is make sure that each open is balanced with a close.  This can be done easiest by using a handler that has been tested, so you don't have to worry about leaving something out elsewhere in your script.  For example:
    on run -- example
              set report to ((path to desktop) as text) & "myFile.txt"
      write_toFile_("testing one" & return, report)
      write_toFile_("testing two, three" & return, report)
      write_toFile_("testing again" & return, report)
    end run
    on write_toFile_(someThing, someFile)
      try
        set theOpenFile to (open for access someFile with write permission)
        write someThing to theOpenFile starting at eof
        close access theOpenFile
      on error -- make sure file is closed on any error
        try
          close access theOpenFile
        end try
      end try
    end write_toFile_

  • ITunes podcast downloading problem.  "Authorization is required to access" error message.

    I've been subsribing to a podcast through iTunes for years with no problems, but today I get the error message:
    "There was a problem downloading (podcast name).  Authorization is required to access (url feed)"
    Its a BBC podcast and I now get the same error message for all the other BBC podcasts that I subscribe to.  I also cant play or download any BBC podcasts from the iTunes Store.  All other podcasts by all other providers are fine.
    Weirdly this problem seems to be limited to the Macbook Pro as the iMac on the same network can access the problem podcasts with no hassle.
    A few web searches have turned up very little, any ideas in Apple Communities-land!

    Hey Roger and thanks for your amazingly quick response.
    I did a quick confirm: it doesn't seem to work on any Windows machines I can get my hands on, so it isn't something specific to me (whew!).  It definitely DOES work on any Mac I can get my hands on (which you also confirmed - thanks).
    That link, the feedproxy.google.com one, works fine on Windows and Mac alike.  I very much imagine that someone else is using FeedBurner and while I'm not huge into podcasts, there are a lot of others who are.  This issue would've come up if it were something like that.  Either way: I can access that link (and thus the content) just fine on any machine I'm on.
    So, what you're saying is to ditch FeedBurner entirely and just submit the raw feed to iTunes.  That sounds good (and, if I want more indepth statistics later, I'll cross that bridge then)...but I'm afraid I'm not sure how to do that.  I've already submitted the FeedBurner feed to iTunes and I'm not sure how I'd go about changing it.  Would I simply ask iTunes to delete the old feed and more or less resubmit?
    Thanks for the help about the artwork.  The individual files may very well be missing the metadata, as when I asked the guy doing that if he had included the artwork, he indicated he was rather confused.  I'll test that out in a bit.  The feed artwork, however, I must admit ignorance about.  Where might I be able to change that?  I'm using WordPress and...PowerPress/BluBrry (or whatever it's referred to).
    Thanks again for being so incredibly helpful with all this.  And so timely, too.

  • Problem of authorization in every Web connection

    In first, sorry for my english, i'm french.
    I have a problem with a windows of authorization who appear in every first web connection.
    She disappears after the first choice, but my problem comes that during the launch of Chrome I made the error "block" and I have no more authorization of Google Chrome throw.
    How to reactivate the permission? And how stop this window of authorization?
    This is this Windows who appears (capture screen) : http://www.flickr.com/photos/67089116@N08/6868570691/
    Tks a lot
    Joris L.

    Hello, & welcome to the forums!
    It looks like you have Little Snitch installed, so you can Open Little Snitch rules, or click the forever tab on that pic/site, then click allow, it'll never ask for that sites permissions again.

  • SSRS 2012 Problem understanding View State Validation steps

    Hi,
    ***** Note I have put my question on Bold to make it easier****
    I am trying to Implement this solution on our systems and need help on how to set it up ?
    Pasted from 
    http://technet.microsoft.com/en-us/library/cc281307.aspx?lc=1033
    How to Configure View State Validation
    To run a scale-out deployment on an NLB cluster, you must configure view state validation so that users can view interactive HTML reports. You must do this for the report server and for Report Manager.
    View state validation is controlled by the ASP.NET. By default, view state validation is enabled and uses the identity of the Web service to perform the validation. However, in an NLB cluster scenario, there are multiple service instances and web service
    identities that run on different computers. Because the service identity varies for each node, you cannot rely on a single process identity to perform the validation.
    To work around this issue, you can generate an arbitrary validation key to support view state validation, and then manually configure each report server node to use the same key. You can use any randomly generated hexadecimal sequence. The validation algorithm
    (such as SHA1) determines how long the hexadecimal sequence must be.
    1.
    Generate a validation key and decryption key by using the autogenerate functionality provided by the .NET Framework.(Well, how to generate Validation key using .Net Framework?)
    In the end, you must have a single <machineKey> entry that you can paste into the Web.config file for each Report Manager instance in the scale-out deployment. 
    The following example provides an illustration of the value you must obtain. Do not copy the example into your configuration files; the key values are not valid.
     Copy Code
    <machineKey validationKey="123455555" decryptionKey="678999999" validation="SHA1" decryption="AES"/>
    2.
    Open the Web.config file for Report Manager, and in the <system.web> section paste the <machineKey> element that you generated. By default, the Report Manager Web.config file is located in \Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting
    Services\ReportManager\Web.config.
    3.
    Save the file.
    4.
    Repeat the previous step for each report server in the scale-out deployment. 
    5.
    Verify that all Web.Config files in the \Reporting Services\Report Manager folders contain identical <machineKey> elements in the <system.web> 
    Does the key generate using above generates the key with same element ?
    Any help on this would be appreciated .
    Thank you !
    Thanks

    Hi SQL_Help:
    Per my understanding that you have some question with the steps descript about "How to Configure View State Validation", you don't know how to generate Validation key and also not clear if all the Web.Config files will add the same
    code, right?
    We have many method to generate the validation key,details information below for your reference:
    Generate either from the machineKey generator utility from
    http://aspnetresources.com/tools/keycreator.aspx or  your very own utility or from this link: http://www.eggheadcafe.com/articles/GenerateMachineKey/GenerateMachineKey.aspx
    We can add some code to generate the key, details steps and sample code in article below for your reference:
    How to create keys by using Visual C# .NET for use in Forms authentication
    We should add the same code which include the generated key in all the web.config file in each server node. 
    More Details information you can reference to the rticle below:
    https://msdn.microsoft.com/en-us/library/ff649308.aspx
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Problems with authorization in iTunes 7

    I updated to iTunes 7 and the first time I connected my iPod there were 90 songs which I have legally downloaded from iTunes which it says I do not have authorization to copy from my computer onto the iPod. Very irritating! All my other downlaods are fine. Any ideas please?

    I had the same problem, but was able to solve it. See my notes here:
    http://discussions.apple.com/message.jspa?messageID=3495571#3495571
    You need to replace a copy of a file that iTunes creates - it's a 30-second fix (and works perfectly) - with the caveat that you must have a good backup.

  • Problem with Authorize

    Hi everyone, i keep getting this message when i'm trying to authorise my computer in iTunes :
    The required file was not found or has a permissions error. Correct this permissions problem and try again, or deauthorize this computer if the permissions cannot be changed.
    Where do i correct that permission? Any ideas?
    TIA

    I'm also having the same problem. They started after I replaced a hard disk.
    i-tunes wants authorization and gets...tells me the computer is already authorized and refuses to recognize the phone. If I run the sync it cleans out all of the apps from the phone and wont send any to the phone.

  • Little Problem understanding "extends"

    Hi god,
    I think I'll never understand how to use the extend-statement. First of all my code:
    import java.awt.Desktop;
    public class JDesktop extends Desktop {
      public static void jdesktop() {
        // here is no code
      } // end of constructor
    } // end of classIf I have a look at Sun's API java.awt.Desktop I found "public class Desktop". But compiling
    the above code the following error will be shown:
    JDesktop.java:2: Desktop() has private acces in java. awt.Desktop
    public class JDesktop extends Desktop
    *^*
    So I had a deeper look at java.awt.Desktop and found a "private constructor Desktop".
    And now my question:
    Why is it not possible to get a sub-class of a class with private constructor if the class itself
    is public? In the tutorials I found that the sub-class will have all methods defined in the parent
    class except the constructor. But if the sub-class will not get the constructor why is it a problem
    if the constructor of the parent class is private?
    Does anybody know how to explain that to me?
    Thanks in advance!

    >
    Also: why would you want to extend the Desktop class?I work with a java-based tool which can import java-classes for internal use. But to import the class
    it need that constructor ( I don't know why). As I wanted to use java.awt.Desktop I thought it is the
    easiest way to create a sub-class and override the private constructor with a public one.
    In that way I would be able to import the sub-class.
    By the way java.awt.Desktop is able to start external windows desktop applications, e.g. internet explorer,
    ms office.

  • PPPoE problem with Authorization of the ip-address (Framed-IP)

    Hi!
    This week I changed our PPPoE dial-in router from a Cisco 3660 (SW: 12.4.25) to a Cisco 2901 (SW 151-2.T2-Universal Image).
    Now I have the problem that I could not make a dial-in connection to this router. I get an error in the PPP-Authorization.
    I want to get the IP-Address per radiusattribut "Framed-IP-Address". With the version 12.4. it works fine.
    DEBUG:
    Nov 10 09:35:23.277: ppp29 PPP: Using AAA Unique Id = 104
    Nov 10 09:35:23.277: ppp29 PPP: Authorization required
    Nov 10 09:35:25.289: ppp29 PPP: Sent PAP LOGIN Request
    Nov 10 09:35:25.301: ppp29 PPP: Received LOGIN Response PASS
    Nov 10 09:35:25.301: ppp29 PPP AUTHOR: Author Data NOT Available
    Nov 10 09:35:25.301: ppp29 PPP: Sent LCP AUTHOR Request
    Nov 10 09:35:25.301: ppp29 PPP: Sent IPCP AUTHOR Request
    Nov 10 09:35:25.301: ppp29 LCP: Received AAA AUTHOR Response PASS
    Nov 10 09:35:25.301: ppp29 PPP: Receive Attrs from[author] Keep[LCP] MERGE
    Nov 10 09:35:25.301: ppp29 PPP: Keep Attr: service-type         2 [Framed]
    Nov 10 09:35:25.301: ppp29 PPP: Updated the attr service-type in datalist
    Nov 10 09:35:25.301: ppp29 PPP: Skip Attr: addr-pool            "pool-edsl"
    Nov 10 09:35:25.301: ppp29 PPP: Skip Attr: addr                 213.174.251.199
    Nov 10 09:35:25.305: ppp29 IPCP: Received AAA AUTHOR Response PASS
    Nov 10 09:35:25.305: ppp29 PPP: Receive Attrs from[SSS] Keep[NCPs] MERGE
    Nov 10 09:35:25.305: ppp29 PPP: Skip Attr: service-type         2 [Framed]
    Nov 10 09:35:25.305: ppp29 PPP: Keep Attr: addr-pool            "pool-edsl"
    Nov 10 09:35:25.305: ppp29 PPP: Updated the attr addr-pool in datalist
    Nov 10 09:35:25.305: ppp29 PPP: Keep Attr: addr                 213.174.251.199
    Nov 10 09:35:25.305: ppp29 PPP: Updated the attr addr in datalist
    Nov 10 09:35:25.313: %LINK-3-UPDOWN: Interface Virtual-Access3, changed state to up
    Nov 10 09:35:25.313: Vi3 LCP AUTHOR: Process LCP Author Data
    Nov 10 09:35:25.313: Vi3 LCP AUTHOR: Process Attr: service-type
    Nov 10 09:35:25.313: Vi3 LCP AUTHOR: Authorization succeeded
    Nov 10 09:35:25.313: Vi3 PPP: Store Author Attr: addr-pool
    Nov 10 09:35:25.313: Vi3 PPP: Store Author Attr: addr
    Nov 10 09:35:25.317: %LINEPROTO-5-UPDOWN: Line protocol on Interface Virtual-Access3, changed state to up
    Nov 10 09:35:25.317: Vi3 IPCP AUTHOR: Start.  Her address 0.0.0.0, we want 0.0.0.0
    Nov 10 09:35:25.317: % IPCP AUTHOR Vi3: Attributes addr and addr-pool are mutually exclusive
       ---->> I think this is my problem - have anyone an idea?
    Nov 10 09:35:25.317: Vi3 IPCP AUTHOR: Authorization denied
    Nov 10 09:35:25.317: Vi3 IPCP AUTHOR: Done.  Her address 0.0.0.0, we want 213.174.251.199
    Nov 10 09:35:25.357: Vi3 PPP: Sending Acct Event[Down] id[104]
    Nov 10 09:35:25.365: Vi3 PPP: Clearing AAA Unique Id = 104
    Thanks,
    Hannes

    Hi Shelley!
    Thanks for your answer. We have solved the problem.
    It was a wrong configuration in the templete.
    The attribut "Framed-IP-Address" was configured in the templete and in the default-attributes of the radius-server.
    Thanks for help!
    Hannes

Maybe you are looking for

  • Mail Adapter Use Mail Package, Mail Body and Attachment

    Hello Have some body a idea, how I can configure the mail adapter with use mail package, that I have in the mail a attachment with content from the messages and a mail body with also text from the message. Thanks for your reply. Regards Tom The diffe

  • Deleted the seeded vo using jdr utils

    hi all, I was getting recursive substitution error when i substituted a vo.. by mistake i deleted the original vo.. i do not know how to revert... kindly help in this issue... thanks..

  • Mass transfer for AUC to Fixed assets

    Hi, I would like to do a mass transfer from AUC assets to fixed assets. 900 new fixed assets have been created. However, the AUC settlement to 900 assets are very tedious. Are there any batch processing available for this ? Or can I use via LSMW ? Th

  • Export command do not show missing font error

    Our plug-in is using the SDK's PDFExportCmd to export InDesign file to PDF. Every thing works fine, except we got into a serious issue when one of the Font is missing in the Indesign file. When an InDesign file having missing font is exported it succ

  • Is it possible to remove a ContactEmployees using DI-API?

    Hi: I need to remove from B1 database a lot of contact employees without remove the business partner, i checked out the DI-API reference and i noted that the ContactEmployees object not have a Remove method.  Does exists any form of remove this objec