How LMS 3.1 uses SNMP passwords

Hi
We are currently in the process of changing our SNMP RO passwords on devices via using groups in DCR.  As this is to be a stage by stage excercise (i.e 20 devices one week, 20 devices the following week), does the SNMP need to be changed as a default within Ciscoworks and where do you do this and any problems this could cause ?
As far as I can see the SNMP RO password from ciscoworks is used to verify device info in the DCR and not for device config retrieval that is performed from RME.  Is this correct ?
Many Thanks

AFAIK, the SNMP RO string gets used in IPM and CiscoView for reading certain configurations (and SNMP RW is used for writing configuraitons). And after seeing this thread: https://supportforums.cisco.com/thread/2003225?tstart=0, it seems Campus Manager might use the RW too, which is news to me.
If you're not using those LMS components, you can probably get away with leaving obsolete SNMP strings in DCR.

Similar Messages

  • After upgrading my I-Pad I now have to use a password everytime I open it.  How do I delete using the password to get into my i-pad?

    After upgrading my I-Pad I now have to use a password everytime I open it.  How do I delete using the password to get into my i-pad?

    Thank you,
    out of the five helps -
    your's was the most explicite
    and it worked.
    Thank you so much,
    Susan

  • How to reboot Nexi using SNMP (tsMsgSend not supported)

    How does one reboot Nexus using SNMP?'
    Normally, I reboot IOS gear using:
    snmpset -c {private} {switch|router|whatever} tsMsgSend.0 i 2
                   tsMsgSend OBJECT-TYPE
                       SYNTAX  INTEGER {
                            nothing(1),
                            reload(2),
                            messagedone(3),
                            abort(4)
                       ACCESS  read-write
                       STATUS  mandatory
                       DESCRIPTION
                               "Sends the message. The value determines what
                               to do after the message has completed."
                       ::= { lts 9 }
    But our new Nexi (5000 and 7500) don't support tsMsgSend in various ways:
    N5K
    Reason: notWritable (That object does not support modification)
    Failed object: OLD-CISCO-TS-MIB::tsMsgSend.0
    N7K
    Reason: wrongValue (The set value is illegal or unsupported in some way)
    Failed object: OLD-CISCO-TS-MIB::tsMsgSend.0
    Yes, I have the following in the Nexi config files:
    snmp-server system-shutdown
    How does one reboot a Nexus using SNMP?
    --sk
    Stuart Kendrick
    FHCRC

    Hi,
    The only way that a device can be reloaded using SNMP is with the SNMP object tsMsgSend
    (1.3.6.1.4.1.9.2.9.9).
    As per the official Nexus MIB support list, the OID is not supported in NX-OS
    Thanks-
    Afroz
    [Do rate the useful posts]

  • I have a password to open the content code file for the OS X Mt Lion Up-to-date program.  Does anyone know how I go about using this password to upgrade Mt Lion?

    I have a password issued by Apple to upgrade OS X Mt Lion.  I need help finding where I enter this password to get the upgrade.  Thanks

    The password should be used to open the PDF file that was also sent.
    Inside the PDF is a redemption code.
    Go to the Mac App Store and click on the Redeem link in the Quick Links section:

  • How can I use ONE password that serves to open up multiple mozilla functions instead of entering & reentering password?

    Firefox just reset itself. Before that, I could enter a safety site, type in 1 password, and thereafter have my username and gmail password automatically display in yellow - saving my entering those two items each time. Since the Firefox reset, I can't figure out how to reset Firefox or Google or whoever it is to do what it used to do. Thanks

    Hello ericmorrel, see : [https://support.mozilla.org/en-US/kb/password-manager-remember-delete-change-passwords Password manager - Remember, delete and change saved passwords in Firefox]
    see also : [https://support.mozilla.org/en-US/kb/use-master-password-protect-stored-logins Use a Master Password to protect stored logins and passwords]
    thank you

  • Dear sir, i used this apple id in my IPAD 4,But some how i forgot the apple id password that was stored in my iPad. i reset the same in my another device. I put the new password in my I pad. Due to mismatching of

    Dear sir,
    i used this apple id in my IPAD 4,But some how i forgot the apple id password that was stored in my iPad. i reset the same in my another device. I put the new password in my I pad. Due to mismatching of password that was stored in iPad and new password ,it does not accept it. very unfortunately i also unable to connect my iPad with internet because it does not allow me to connect. In every second message displayed for apple id password. i am helpless. please help to get rid opt from this problem.
    rgds
    R K Hazarika
    <Email Edited by Host>

    you manage the appleID on this site
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

  • How to do a SET using SNMP ?

    Hi,
    I already ask in the forum Advanced Language Topics
    http://forum.java.sun.com/thread.jsp?forum=4&thread=320674
    but I din't receive any answer so I try here maybe some one could help me on this ... ;-)
    I find a nice piece of code on Internet to do SNMP request �
    http://membres.lycos.fr/ysoun/index.html
    http://membres.lycos.fr/ysoun/sck.zip
    It works find to do some GET operations like doing a GET sysDescr (oid 1.3.6.1.2.1.1.1.0).
    But I would like to do a SET operation but I could'nt succeed.
    First I do a get on an oid 1.3.6.1.2.1.1.4.0 (sysContact) and I get the value "hello" which is find and I would like to set this value to "good bye".
    Well I have to say that I don�t know very well the SNMP protocol and I couldn�t figure out where to put the value in order to set "Good bye". Off course I have the right community to do that but I just can't figure out how can I do that ...
    Any comment ... help ... ideas ... are more than welcome !!!! Or maybe some better SNMP package to do that???
    thanks,
    Emmanuel
    Here is the code:
    the function to set using SNMP ...
      public static setSnmpRequest(int snmpPort, int snmpTimeout, String community, String host, String strValue){
          String oid = new String("1.3.6.1.2.1.1.4.0");
          D_SNMP.Message request;
          try {
              InetAddress snmpHost = InetAddress.getByName(host);
              DatagramSocket sock = new DatagramSocket();
              sock.setSoTimeout(snmpTimeout);
              // create pdu.
              //somewhere here I should include my variable "good bye" but I don't really know how
              Var var = new Var(oid);
              OctetString c = new OctetString(community);
              D_SNMP.Integer requestId = new D_SNMP.Integer(0);
              D_SNMP.Integer errorIndex = new D_SNMP.Integer(0);
              D_SNMP.Integer errorStatus = new D_SNMP.Integer(0);
              //For the GET:
              //PduCmd pdu = new PduCmd(Pdu.GET,requestId,errorStatus,errorIndex,new VarList(var));
              //What I would like to do:
              PduCmd pdu = new PduCmd(Pdu.SET,requestId,errorStatus,errorIndex,new VarList(var));
              D_SNMP.Message m = new D_SNMP.Message(c,pdu);
              // send
              byte[] b = m.codeBer();
              DatagramPacket packet = new DatagramPacket(b,b.length,snmpHost,snmpPort);
              byte[] b2 = new byte[1024];
              DatagramPacket p2 = new DatagramPacket(b2,b2.length);
              long startTime = System.currentTimeMillis();
              sock.send(packet);
              sock.receive(p2); // block or ... timeout.
              long time = (System.currentTimeMillis() - startTime);
              // display
              ByteArrayInputStream ber = new ByteArrayInputStream(b2,1,p2.getLength()-1); // without tag !
              D_SNMP.Message m2 = new D_SNMP.Message(ber);
              System.out.println("snmpPing " + host + " :");
              System.out.println(m2.getPdu().getVarList().elementAt(0) + " / time = " + time + "ms" );
              if (debug){
                  StringBuffer buf = new StringBuffer();
                  m2.println("",buf);
                  System.out.println(buf);
          } catch (UnknownHostException ex){
              System.out.println(host + ": unknown host." );
          } catch (InterruptedIOException ex){
              System.out.println("snmpPing "+ host + " : Time-out." );
          } catch ( Exception ex) {
              System.out.println("Error in : ");
              System.out.println(ex);
      } the class Var... where somewhere I should be able to set the variable "Good bye" ...
    import java.io.*;
    import java.util.Vector;
    /** ASN.1 grammar for Var:
    * Var ::=
    * SEQUENCE
    *        { name Oid
    *          value CHOICE {Null, Integer, Counter, gauge, Timeticks, IpAddress, OctetString}
    final public class Var extends construct implements Serializable {
      public Var(Oid o, smi s){
        this();
        valeur.addElement(o);
        valeur.addElement(s);
      /** Same as Var(new Oid(oid), new Null()).
      public Var(String oid) throws IOException{
        this(new Oid(oid), new D_SNMP.Null());
      /** Builds a Var from a ByteArrayInputStream holding a Var Ber coding.
       *  <BR>Bytes read are removed from the stream.
       *  <P><B>Note:</B> The ByteArrayInputStream must not contain the Var Tag.
       *  @exception IOException is thrown if a problem occurs while trying to decode the stream.
      public Var(ByteArrayInputStream inBer) throws IOException{
        this();
        decodeBer(inBer);
      /** Used only by VarList.
      Var(){
        super(smi.SEQUENCE_tag);
        valeur = new Vector(2);
      /** Returns the name of this Var.
      public Oid getName(){
        return (Oid) valeur.elementAt(0);
      /** Returns the value of this Var.
      public smi getValue(){
        return (smi) valeur.elementAt(1);
      /** Returns the value of this Var as a String.
      public String toString() {
        try{
        return ((smi)valeur.elementAt(0)).toString() + " = " + ((smi)valeur.elementAt(1)).toString();
        }catch (IndexOutOfBoundsException e) { // ne doit pas se produire.
          System.out.println("Erreur codage interne type Var.");
          System.exit(1);
        return null;
      /** Used smi.decodeBer().
      void decodeValeur(ByteArrayInputStream bufferBer, int lgBerValeur) throws IOException {
        int tag = bufferBer.read();
        if ( tag != smi.OID_tag )
          throw new IOException ("erreur decodage tag Oid de Var: byte " + java.lang.Integer.toHexString(tag) +" recu.");
        Oid name = new Oid(bufferBer);
        this.valeur.addElement(name);
        // lis l'objet suivant.
        tag = bufferBer.read();
        try{
        smi _valeur = smiFactory.create(tag,bufferBer);
        this.valeur.addElement(_valeur);
        } catch (IOException e){
          throw new IOException ("erreur decodage champ Valeur : " + e);
      /** Custom serialization: Ber coding is written in ObjectOutputStream.
      private void writeObject(ObjectOutputStream out) throws IOException{
        byte b[] = this.codeBer();
        out.writeInt(b.length);
        out.write(b);
        out.flush();
      private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
        this._tag = smi.SEQUENCE_tag;
        this.valeur = new Vector();
        int len = in.readInt();
        byte b[] = new byte[len];
        in.readFully(b);
        this.decodeBer(new ByteArrayInputStream(b,1,b.length-1));
    } the class VarList ...
    import java.io.*;
    import java.util.Vector;
    /** ASN.1 grammar for VarList:
    * VarList ::=
    * SEQUENCE OF Var
    final public class VarList extends construct {
      /** Constructs a VarList holding a single Var.
       *  @param Var to be held by Varlist
       public VarList(Var v){
         super(smi.SEQUENCE_tag);
         valeur = new Vector(1);
         valeur.addElement(v);
      /** Constructs a VarList holding Vars.
       *  @param v Vector of Vars.
       public VarList(Vector v){
         super(smi.SEQUENCE_tag);
         valeur = (Vector) v.clone();
       /** Constructs a VarList holding Vars.
       *  @param tab array of Vars.
       public VarList(Var[] tab){
         super(smi.SEQUENCE_tag);
         int taille = tab.length;
         valeur = new Vector(taille);
         for (int i=0; i<taille; i++)
           valeur.addElement(tab);
    /** Builds a VarList from a ByteArrayInputStream holding a VarList Ber coding.
    * <BR>Bytes read are removed from the stream.
    * <P><B>Note:</B> The ByteArrayInputStream must not contain the Var Tag.
    * @exception IOException is thrown if a problem occurs while trying to decode the stream.
    public VarList(ByteArrayInputStream inBer) throws IOException{
    super(smi.SEQUENCE_tag);
    valeur = new Vector();
    decodeBer(inBer);
    /** Returns the Var at the specified index.
    public Var elementAt(int i) throws IndexOutOfBoundsException {
    return (Var)valeur.elementAt(i); // Sans soucis: Var est immutable
    /** Returns the number of Var held this VarList.
    public int getSize(){
    return valeur.size();
    /** Used by smi.decodeBer().
    * A VarList is in fact an array of Vars.
    void decodeValeur(ByteArrayInputStream bufferBer, int lgBerValeur) throws IOException {
    Var v;
    int lg;
    try{
    while (lgBerValeur >0){
    int tag = bufferBer.read();
    lgBerValeur --;
    if ( tag != smi.SEQUENCE_tag )
    throw new IOException ("error decoding tag Var in VarList: byte " +
    java.lang.Integer.toHexString(tag) +" read.");
    v =new Var();
    lg = v.decodeBer(bufferBer);
    this.valeur.addElement(v);
    lgBerValeur -= lg;
    } catch (IOException e){
    throw new IOException ("error decoding Value : " + e);

    I read the documentation it does not help me much, (it's generated by javadoc and there is not enought comment to understand the whole thing ... in fact it just miss a sample of SET request and it would be perfect ...
    thanks,
    emmanuel
    PS: I'm going to try the author again
    PS: Still ... any help or pakage to do SET request using SNMP are more than welcome ...

  • How do I actually use a master password?

    My home folder is protected with file vault and so I have a master password set. If ever I should forget my user password how would I use the master password to get in to my Mac?
    thx

    If you would ever forget your password, then you
    would need to use the Mac OS X Install Discs to reset your password.
    The above suggestion is not correct for an account that's protected with FileVault. Even if it does allow you to reset the password on the account it does not reset the password on the encrypted home folder.
    Instead read this Apple Support article.
    Basically you "attempt" to logon to the account using incorrect passwords. After three incorrect attempts you'll be prompted for the Master Password (or if the account has a password hint set you'll see the password hint - enter another incorrect password to get the Master Password prompt).
    At this point you can enter the Master Password and you'll be allowed to set a new password for the account. This will also set the new password on the encrypted home folder, mount it and log you in to the account.
    You can also mount a FileVault encrypted home folder from the command line with the Master Password using hdiutil. One reason you might want to do this is if you had multiple accounts on a machine and you were logged in to one account but needed to recover or access files in an encrypted home folder of another account.
    Steve

  • What can I do? I've forgotten my password and dont remember the answers to my sercurity questions, and no longer have access to the email account i used for backup. How do I get my icloud password reset?

    What can I do? I've forgotten my password and dont remember the answers to my sercurity questions, and no longer have access to the email account i used for backup. How do I get my icloud password reset? Please help. Thanks in advance.

    Please see Kappy's User Tip here:
    https://discussions.apple.com/docs/DOC-4551

  • How can i see how many people are using my apple id without changing the password ?

    how can i see how many people are using my apple id without changing because some people have it

    I'm not sure that you can. Why have so many people got your password? So many in fact, that you don't know how many.
    You can see how many computers are authorised to play any songs you have purchased from the iTunes Store, but that isn't quite the same thing.
    Perhaps a better idea would be to change the password and not let anyone else know what it is. That would at least prevent anyone else from changing it and locking you out of your own account.

  • How do I keep my email password from remaining in Preferences? I want to enter it every time I get my mail. I upgraded to OS M Lion but it won't let me delete it from preferences. It's worked prior to using M. Lion. Any suggestions? Thanks!! Jen

    How do I keep my email password from remaining in Preferences? I want to enter it every time I get my mail. I upgraded to OS M Lion but it won't let me delete it from preferences (the password from Account Info). Once you enter the password, it keeps it permanently. i do not want that.  It's worked prior to using M. Lion. Any suggestions? Also, The other pressing issue i have is, I DO NOT want ANY mail showing in my inboxes when Mail starts UNTIL i enter that password for each account. Instead of creating different user accounts for the MacBook, it's just easier this way. Or is it? If this is a permanent thing, then I may switch back to Lion. I guess I shoud've waited until the kinks were out before installing (**** Mac-head!)
    Thank you all kindly for any suggestions & your time
    Regards,
    JC

    I DO NOT want ANY mail showing in my inboxes when Mail starts UNTIL i enter that password for each account.
    That is simply not possible with Mail, and never has been.  Anyone who uses your account can see all messages stored in Mail.  The only true solution is to not let other people use your account.  Let other people use the guest account, or if you share the machine with someone else, set up a separate user account for that person.  This will also solve the problem of remembering the password.  It will become a non-issue for Mail to remember your password if nobody else has access to your account.

  • I hit Forget Network and now cannot get back onto my wireless home network. All of my other computers and iphones are fine.  How do I get the network back?  It shows in my list of networks but when I use the password and try to join it says not connected.

    I hit Forget Network and now cannot get back onto my wireless home network. All of my other computers and iphones are fine.  How do I get the network back?  It shows in my list of networks but when I use the password and try to join it says not connected.

    See if the iPad will accept the password after you restart it. It's worth a try.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    You could also try a reset as well.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • HT204306 How can I get my old password back after I have changed it? I cannot change it back because it has been used in the last year

    how can I get my old password back  after I have changed it? I cannot change it back because it has been used in the last year

    HI, thanks, but I know I can set a new password. I just wanted to get my old one back cos I have used it a long time & can therefore remember it.

  • How to find the db accounts using default passwords in oracle 10g

    Hi, can someone pleas tell me , how to find the oracle accounts in the database which are using default passwords. DB verion is 10g and 9i.
    in 11g version we can query the view DBA_USERS_WITH_DEFPWD to view the users....
    any idea in 10g and 9i ?
    thanks in advance.

    951658 wrote:
    Hi, can someone pleas tell me , how to find the oracle accounts in the database which are using default passwords. DB verion is 10g and 9i.
    in 11g version we can query the view DBA_USERS_WITH_DEFPWD to view the users....
    any idea in 10g and 9i ?
    thanks in advance.the only way I've found is to search the web for lists of default users and their passwords, then attempt to log on with said credentials. I'd start with Pete Finnigan's site (google is your friend). He may already have some scripts ready to go, or at least the lists you'd need to get started.

  • How to know whether the current database is using a password file or not?

    How to know whether the current database is using a password file or not?

    The remote_password_file is the parameter that determines if you can use or not a password file. The values this parameter can have are NONE, SHARED, EXCLUSIVE. It is pretty obvious, if it is set to either SHARED or EXCLUSIVE the oracle instance has enabled the access through a password file for the SYSDBA and SYSOPER roles.
    ~ Madrid

Maybe you are looking for

  • Sent messages can't be viewed

    My sent messages all say, "The message from ... concerning ... has not been downloaded from the server. You need to take this account online in order to download it." When that first started, they would eventually appear. No longer, and now it has sp

  • Plant / Storage locaitons are not filled up ..

    Hi, Team , I had created a service order in SAP CRM , it had replicated well to the backend system R/3 , but showing the error " the plant / Storage locations are not filled up " . What could be the reason  ?  Instead of getting determined automatica

  • Change IP for server

    Dear All, When I change IP server, installed BW, then I log on Portal : Content Administration -> Web Dynpro, choose Maintain JCO Destinations, and I test BI_METADATA ... there's error: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Con

  • Ping channel disabled for SFSF sender cc channel

    Hi, I am working with Successfactors Integration.  SF is my sender and 3rd party is my receiver. I just created a communication channel in ID for SFSF adapter and activated. I see the ping channel for this SFSF channel is disabled in CC monitor. and

  • Java update & now getting random music playing

    My mac updated java and now right after that I'm getting random music playing songs that aren't on my mac every once in a while. Like about 7 in the last hour. This is crazy. How do we stop this? Java for os x 2013-005 1.0 safari version 6.0.5 Mac OS