Can we lock down user admin functionality to allow password changes only?

Hi,
Is it possible to lock down the user admin functionality so a specific role can only change passwords?
We have a large user base of >10K infrequent users that are forced to change their passwords every 30 days. We suspect a lot will require password changes and we are keen to not have the tech team spending most of their time dealing with such requests. We would like to pass this task onto data management but not allow them the system administrator functionality.
We know we can create a responsibility with a limited menu available so the operator can see only the security/user/define menu. But this will still allow the person to add responsibilities to existing user accounts and create new user accounts, both of which are deemed unacceptable security risks. Is it possible to lock down the form as well as the menu? Allowing operators to only change the password of existing users? Or can we use the custom.pll to error when a user tries to do anything except edit the password field when in this role?
Thanks
Matt

You should be able to do that. You would create a new privilege level (ie 7), assign all commands to that level except (this is my guess) the command vpn-sessiondb, you would put that at a lower privilege level (ie 6). Here's a write-up that may help getting you in the right direction.
http://www.packetpros.com/2012/08/read-only-asdm.html

Similar Messages

  • List of what features can be locked down on iOS 6

    Hello,
    I need a complete list of what features can be locked down on iOS 6 - eg: preventing d.l of apps, internet filtering?
    I have 800+ ipads that need to be extremely locked down and would very much appreciate a list of what i can actually prevent users from doing.
    Cheers,
    Andrew

    Probably can't give you a complete list, but you can check out:
    Settings > General > Restrictions.
    If you want to lock the iPads in a single app, try:
    Settings > General > Accessibility > Guided Access.

  • Can we lock down the system for BW object and not bex objects

    Hello,
    I have a question about object changeability. We want to lock down the BW production system but leave it open for adhoc query. Can we lock down the BW system only for few objects like Cubes, ODS, Infoobjects, Infosets, Multiproviders, and keep the system open for Bex objects like Query, varaibles and also for Infopackges and DTP's.
    Which tcode can we use for this ?
    Thanks,
    Message was edited by:
            Kiran Mehendale

    hi, usaully production system will be non changeable for all objects.. but as far as SAP BW is concerned we can make certain objects changeable by setting as follows..
    in production go to RSA1 - Transport Connection, select Object changeability button from tool bar, here you will find a list of objects which can be made changeable in a closed system.. just click on required objects and set it to Everything Changeable..
    Reg,
    Pradhiba
    <REMOVED>

  • Wireless Controller locking down User per SSID

    I am using Wireless Controller 4112. We use WPA enterprise mode for authentication and encryption via Microsoft IAS server and MS AD domain.
    My question is how to lock down a user to a specific SSID? I would guess that this is via some vendor specific radius attributes, am I right? And if so, what would be the name (and ID) for the attributes?
    Thanks in advance.

    Making progress in setting up the wireless controller with multiple VLAN and WLAN/SSID. I create a virtaul interface at the controller and assign a VLAN number to it. The controller mgmt port is also set to a trunk port. Create a new SSID WLAN and have it mapped to the new virtual interface. Things work good.
    The new problem I am trying to solve is how to prevent wired users to access the controller admin web interface via the virtual interface IP. I try create ACL and map it to the virtual interface. It doesn't seem working.

  • Can you lock administrator users out of each others user folders?

    Currently I can access each admin's user-folder from any other administrator account. Is there a way i can change the permissions so that this is not possible?
    As an adjunct to this question: Right now the main two users of this machine are logging in as administrator accounts. Can I just add an admin account and downgrade these two to standard accounts, or is it more complicated than that?
    thanks for your help.

    Administrators can change permissions on any file in the system, so while you can set it up so by default they cannot see each other's files, all it will take is a permissions change to allow access. Still, if you want to prevent other administrators from seeing a specific file or folder, go to the desired item and get info on it. Then ensure only you are listed as the one with read and write accessibility, and set the other entries to "no access".
    That should do it. If it doesnt, then you may need to use command line utilities to ensure only you have access. However, again keep in mind that while you can set this up, any administrator can get around it by changing the permissions for the file again. This will only present a temporary hurdle...

  • Magic Mouse - How can I slow down the scrolling function on Mac OS X?

    I'm a designer. In Illustrator and othe programms, I  try to scroll but its to fast so I flip  through the pages. I want to slow down the scrolling function of my mouse but where can I find it in OS X 10.7?

    Ahh,
    Just the App not the support folder I'll be bound.
    8:23 PM Wednesday; August 15, 2007

  • Locking down users

    I'm trying to find a way to give access to some IT staff in some of our smaller sites, but I'm not finding exactly what I'd like to do. Our hope is that we can give them access similar to the "Help desk user" preset (locks them down to only the message tracking screen). Unfortunately, we'd also like to restrict what domains they are able to track messages for, but I'm not able to find any way to restrict them other than the pre-made categories.
    Anyone ever done anything like that before, or know if it's even possible?

    Hello -
    We do not have that ability available in Message Tracking. You might be able to work around this limitation by having certain admins / help desk users only have access to certain appliances (if you could limit each site's appliance to handle only certain domains). You might chose to only give these help desk users quarantine access for simple tasks, or perhaps delegate only the more savvy help desk folks with more access.
    Take care!
    Andrew Wurster

  • How can i give multiple users admin access?

    I would like to give another user on my macbook pro admin access, so that they can install programs without having to ask me for the password each time. I do not want the password to be the same for my profile, because I don't want them getting into my account. So is it possible to have a separate password for admin use only? This might be a dumb question and I know their is probably a simple way to do this, but I'm new to macs so any help would be greatly appreciated. Thank you.

    Convert a standard user to an administrator
    Choose Apple menu > System Preferences, then click Users & Groups.
    Click the lock icon  to unlock it, then enter an administrator name and password.
    Select a standard user or managed user in the list of users, then select “Allow user to administer this computer.”
    http://support.apple.com/kb/PH18891

  • Can COLMAP call a User Defined Function?

    Hi, I'm new to GoldenGate. We are replicating many source databases into a single target database. All source databases have the same schema but with different data. I need to generate a GUID to insert into a new column in every table in the source database. Can I do this with COLMAP? If so, how can I generate a GUID with COLMAP?
    If this is not possible, what would be a good solution? Should we use BEFORE INSERT triggers in the source DB to insert the GUID? The guid column is only on the target DB and not in the source DB.
    Thanks.

    Create a procedure to get the data you want:
    CREATE OR REPLACE PROCEDURE LOOKUP
    (CODE_PARAM IN VARCHAR2, DESC_PARAM OUT VARCHAR2)
    BEGIN
      SELECT DESC_COL INTO DESC_PARAM
      FROM LOOKUP_TABLE
      WHERE CODE_COL = CODE_PARAM;
    END;Then, in your replicat, use SQLEXEC:
    MAP HR.ACCOUNT, TARGET HR.NEWACCT,
    SQLEXEC (spname lookup,
    params (code_param = account_code)),
    COLMAP (USEDEFAULTS, newacct_id = account_id,
    newacct_val = @GETVAL(lookup.desc_param));The @GETVAL function maps values returned in desc_param to the newacct_val column.

  • Locked out of admin functions

    I've managed to lock myself out of admin on my Officejet Pro 8610. Could someone help me with resetting the username/password or returning to factory defaults so that I may regain control of my printer? Thank you. 

    Hello ,  Thanks for posting in the HP Support Forum.  I see you're in need of the instructions for a semi-full reset* for your HP Officejet Pro 8610 e-All-in-One Printer. I would like to assist.  Check your inbox - I will private message you the information you need to regain admin control over your 8610. *Note that completing this step will reset your printer's wireless configuration, ePrint address, and other customized printer settings. If you have created a custom @hpeprint.com address it will be permanently erased. For more information on custom ePrint addresses, click here.   If I have helped you resolve the issue, feel free to give me a virtual high-five by clicking the 'Thumbs Up' icon below and clicking to accept this solution.  Have a great day! 

  • Pymt Terms - Ability to LOCK down Users from Input or Change

    Is there an easy  way to prevent Users from Entering or Changing Payment Terms on an Invoice? Note in other module areas there is an easy way to Define the Screen Layout for Optional/Required/Display etc.,  (Materials Managment / Purchasing) .   Thanks!!!

    Hi Santosh
    I have been off working on another area. Your feedback is always so helpful. As stated before, your suggestion allows me to Suppress Payment Term, but is there a way to simply Ghost (shows up but user cannot change it)...
    btw, I want to allow only specific Security Group/Authorizations to change the Payment Method in FB60 or any Logistics Invoice... Have you run across this?  I will be submitting a new thread on this but thought I would ask here as well...
    As always... Thank you!!!!

  • How can I make a new admin account without the password or cd?

    I got this Mac 5 off ebay, and it works fine.. but I can't download Silverlight, or update itunes.
    I've the reboot, terminal thing, but either I'm stupid and not doing it right, or it doesn't work.
    I can't make a new user, or change the password, and PLEASE help.

    We need a better description of what you bought. "Mac 5" doesn't ring a bell with me and I've been her a long time. Do you mean "iMac G5?"
    If so, the latest versions of SilverLight require a Mac with an Intel processor--the G5 iMac is not an Intel-based computer so it will not install.
    If it's a really a G5, neither can it run OS10.6 as shown in your equipment line. 10.5.8 is as high as it can go.
    I can't make a new user, or change the password,
    Call the seller and get the gray system install/restore disks that originally shipped with that computer, They are as much a part of the computer and the hard drive, and needed for resetting the password. I consider any used Mac sold without tose disk to be missing a part and therefore worth much less money.
    So---right now we're fighting conflicting info. Please do "About this Mac" from your Apple menu and post what is says about the processor and the OS version. If the processor description includes the word "Intel," you have a much newer Mac than the pre-2006 iMacs this forum covers and should repost in the forumfor newer iMacs here:
    iMac (Intel)

  • Can i lock my system pref with a diff password then the master pass?

    Is there a way i can lock my system preference panes with a different password then the master one? specifically the network settings.  Thanks in advance.

    master password is like the master key it have all rights to all things

  • How can i cut down the video's i've shot to only have the best parts in them for later use

    first thing I was wondering was. I upgraded to the premiere user to where I have 20mb of storage but I take a lot of spearfishing video's and photo's and the 20mb is just about full. I see I can buy more memory but should I just get a external hard drive to keep all my photo's and video's and if I do that is it easy to get the materials that I need for me to create my new projects in premiere elements or should I just buy more memory. the second thing I was wondering is that I take a lot of spearfishing videos and each dive can be 15min long but only have about 4min of action footage that I actually use. so my question is after I download the video's from my camera can I go through them and extract the good footage and save it like that for me to use at a later date in my projects. it would save a lot of time and a lot of memory to be able to do it this way and if I can how do I go about doing it. thank you for all your help Cory

    "I download the video's from my camera can I go through them and extract the good footage and save it like that for me to use at a later date in my projects."
    This is the very definition of video editing, Cory! That's what the program is designed to do!
    If you need some help with the basics of this program, I've created a free 8-part Basic Training series of tutorials for Premiere Elements support site Muvipix.com. That may be the best place to start.
    http://forums.adobe.com/thread/537685
    The most important step in any project is setting up the project settings to match your source video as precisely as possible. I cover this in part 1, so watch it carefully. I go into greater detail on setting up a project and capturing, editing and outputting video in my books, if you're interested.
    As for Photoshop.com, I'm not sure it's worth buying more than 20 gig of backup space online at this point. You'd be better off investing in a good, large second hard drive for your media and project files. Save the online backup for your finished pieces.

  • User should not be allowed to change plant in SO once PR/PO is created

    Hi SAP Gurus,
    User has created the Purchase Request & Purchase Order for a sales order line item. After PR/PO creation user is able to change the plant. We need to stop that is there any standard configuration or setting by which i can stop the user to change the plant.
    System is giving the error if i am trying to delete the item since the PO exist but not stoping me to change the plant.
    Thanks
    Surender

    Hi,
    Standard setting is not available.You need to write the specific code in Sales order change exist by checking the VBEP -schedule line table where the PR exists.so for the line item the Plant should not be changeable.
    Sales Order Change exit the following requirement has to be incorporated.
    You can find the user exits in SPRO-Sales and DistributionSystem ModificationsUser Exits--User Exits for Order Processing.
    Regards,
    Saju.S

Maybe you are looking for

  • Printing multiple images

    I am trying to print some photos each 2.5 x 3 inches each on A4 paper but cannot get the size right using Contact Prints. In Picture Package I get multiple images of the same photo. Can anyone advise, please?

  • SAFARI 3.1.2

    I WANT TO BLOCK ONLY A HAND FULL OF SITES ON MY MAC BUT AM UNSURE HOW TO DO THIS? WHEN I PUT PARENT CONTROLS ON IT BLOCK A HEAP OF SITES LIKE CERTAIN PARTS OF EBAY AND MORE. CAN I ONLY BLOCK WEB SITES I WANT BLOCKED?

  • Script for Camera Raw Catch

    Hi all, I'm trying to figure out a way to incorporate my script for opening files in Photoshop to catch if no Camera Raw settings have been done to the file yet.  Currently, I open files using a droplet that applies my actions and preferences to the

  • I am forget my answer the question

    I am forget my answer the question

  • Undo Command not working in FrameMaker 10

    Hi, The Undo command, Redo command and history are not working in the FrameMaker 10 book I am working on. I am running FrameMaker 10 on Windows 7. I'm working on a Structured DITA FM document, which was formely a FM8 doc. Undo works in my other FM bo