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]

Similar Messages

  • How to find table with colum that not support by data pump network_link

    Hi Experts,
    We try to import a database to new DB by data pump network_link.
    as oracle statement, Tables with columns that are object types are not supported in a network export. An ORA-22804 error will be generated and the export will move on to the next table. To work around this restriction, you can manually create the dependent object types within the database from which the export is being run.
    My question, how to find these tables with colum that that are object types are not supported in a network export.
    We have LOB object and oracle spital SDO_GEOMETRY object type. our database size is about 300G. nornally exp will takes 30 hours.
    We try to use data pump with network_link to speed export process.
    How do we fix oracle spital users type SDO_GEOMETRY issue during data pump?
    our system is 32 bit window 2003 and 10GR2 database.
    Thanks
    Jim
    Edited by: user589812 on Nov 3, 2009 12:59 PM

    Hi,
    I remember there being issues with sdo_geometry and DataPump. You may want to contact oracle support with this issue.
    Dean

  • How do I fix YouTube,"this format not supported?

    My Ipad gives a error message when trying to use YouTube from home screen but works from Safari Message reads "format not supported"
    How can I resolve this?

    Well, millions of people are trying to do the exact same thing. Yes, the servers are busy, busy, busy. Please be patient.

  • How to incorporate a Language that is not supported in Oracle Portal

    Hi,
    I want to know the preferred way to add support for a new language in Oracle Portal.
    If a language is not supported in Oracle Portal, how I can add the content for that language in the Portal?
    Please advise.
    Best Wishes.

    I've seen this in a statement of direction presentation as an enhancement for R11. So this should be a R11 feature. In the meantime you might investigate the NLS views and tables and try to find a way to extend this. BUT just in an emergency case and you have to know that is not supported (also you may lose support in general for this installation when hacking the repository). So I cannot recommend this with a clear conscience. You have to know exactly what you're doing.
    You can also open a SR to get an official statement from support. Maybe there's a note for this.

  • GetTableName using ResultsetMetadata. Not support ???

    I am using JDBC driver for MS SQL Server 2000 to connect to SQL Server 2000. In this I need to know the tablename of columns in the underlying query structure of the Resultset. The resultsetmetadata method getTableName() is not supportive. It returns "".
    My code :
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://DBTest:1433","sa","");
    strSQL = "SELECT * FROM Test.dbo.tables1";
    stmt = conn.createStatement();
    rs = stmt.executeQuery(strSQL);
    ResultSetMetaData rsmd = rs.getMetaData();
    System.out.println("strTableName = " + rsmd.getTableName(1));
    Can anybody help me in this regard. Any concerns are appreciated.
    Thanks a lot.

    Since you are selecting from a table, you already have the table name in the SQL, so I'm not sure what you are really trying to get at with your code.
    That said, if you need to get the table names from the database, you have to query the database to fetch the table names.
    The following code dumps all the tables by schema and type after connecting to SQL Server:
    * ConnectApp.java
    * Created on September 9, 2002, 11:22 AM
    * @author  rweaver
    import java.sql.*;
    import java.util.*;
    class ConnectApp {
        public static void main(String args[]) {
            try{
                // Load the driver
                Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
                // Connect to the database
                Connection connection=DriverManager.getConnection("jdbc:microsoft:sqlserver://myhost:1433;databasename=pubs","myUser","myPassword");
                // Get database meta data
                DatabaseMetaData meta=connection.getMetaData();
                // Display meta data information
                System.out.println("Database: "+meta.getDatabaseProductName());
                System.out.println("Product version "+meta.getDatabaseProductVersion());
                System.out.println("User name: "+meta.getUserName());
                System.out.println("Driver: "+meta.getDriverName());
                System.out.println("Driver version: "+meta.getDriverVersion());
                System.out.println("SQL keywords: "+meta.getSQLKeywords());
                System.out.println("===================================");
                System.out.println("Schema term: "+meta.getSchemaTerm());
                System.out.println("===================================");
                System.out.println("Catalog term: "+meta.getCatalogTerm());
                System.out.println("===================================");
                ResultSet rsSchema = meta.getSchemas();
                String [] sa = { "none" };
                while (rsSchema.next()) {
                    System.out.println("For " +meta.getSchemaTerm()+ " " + rsSchema.getString(1));
                    ResultSet rsCatalogs = meta.getCatalogs();
                    while (rsCatalogs.next()) {
                        System.out.println("\tFor " + meta.getCatalogTerm() + " " + rsCatalogs.getString(1));
                        ResultSet rsTableTypes = meta.getTableTypes();
                        while (rsTableTypes.next()) {
                            sa[0] = rsTableTypes.getString(1);
                            System.out.println("\t\tFor TableType '"+sa[0]+"'");
                            System.out.println("\t\t===================================");
                            ResultSet rsTables = meta.getTables(rsCatalogs.getString(1), null, "%", sa );
                            ResultSetMetaData mdTables = rsTables.getMetaData();
                            int columnCount = mdTables.getColumnCount();
                            for(int i=1; i<columnCount; i++) {
                                System.out.print("\t\t" + mdTables.getColumnName(i) + "\t");
                            System.out.println("");
                            while (rsTables.next()) {
                                for(int i=1; i<columnCount; i++) {
                                    System.out.print("\t\t" + rsTables.getString(i) + "\t");
                                System.out.println("");
                            rsTables.close();
                        rsTableTypes.close();
                    rsCatalogs.close();
                rsSchema.close();
                // Close the database
                connection.close();
            }catch(Exception ex){
                System.out.println(ex);
                System.exit(0);
    }

  • How do I fix "this accessory is not supported by iphone" popup?

    When I connect my iPhone 5 to my sony sound system with the 30 pin to lightning adaptor, my iPhone says "This accessory is not supported by iPhone". Is there any way to fix this issue?

    Hello Jeffery,
    It sounds like you are trying to use the Lightning Digital AV Adapter, but you are getting a message that it is not supported.  I found some troubleshooting steps you can take when you encounter an issue with this type of adapter:
    Troubleshooting
    If you encounter an issue using the Apple Digital AV Adapter or VGA Adapter:
    Disconnect and reconnect the adapter from the iOS device and display.
    Connect directly to the TV, projector, or external display using a known-good VGA or HDMI cable.
    Remove any VGA or HDMI extension cables or converters.
    Note that accessories that convert a VGA or HDMI signal to other video formats (DVI, Composite, Component) are not supported.
    Ensure that you are using the latest version of iOS. Some Apple Digital AV Adapters require iOS 5.1 or later.
    Note: When using an Apple Digital AV Adapter manufactured before early 2012 with iPad (3rd generation), you may see the "This accessory is not supported" alert. Dismissing the alert will allow you to use the adapter.
    For optimal performance, you may need to adjust the video resolution or settings for your display. If your display offers an "auto detect" or "factory default" setting, you may be able to use these options to optimize video resolution and display.
    You can find the full article here:
    iOS: About Apple Digital AV Adapters
    http://support.apple.com/kb/ht4108
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • I downloaded firefox 4 (had 3.6) and couldn't use it because not supported by architecture

    I downloaded firefox 4. after downloading I was prompted to drag the icon into the applications folder(it had a circle with a bar across it superimposed). I dragged it into applications and then it wouldn't open. a dialog box appeared "this application is not supported by the architecture. have an Imac 10.5.8

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party build that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox

  • 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.

  • I have made the switch to MAC from PC and I use Sony cameras/video recorders. I used the Sony PMB program to store all photos and videos. Now I need to transfer my photos and videos over to my MAC and I do not know how to do this as PMB is not supported

    I need to transfer all my photos and videos from my old PC stored in the SONY PMB program to my new fabulous MAC desktop. I do not know how I can do this. Plus for future photos/videos, how can I upload them from Sony products ?
    Please help me
    PS I just purchased the computer yesterday so it has the most current operating system

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Do you know where the actual photo files are located on your laptop? If so, you can transfer them to the Mac over a LAN or by saving them to an external HDD, thumb drive or burning them to a disk. Then you can import the photos to the iPhoto app that came on your new Mac.
    It would be the same process for the videos, however, it would depend what type of video files they are, as to which Mac app might allow you to view them.
    BTW, since your Mac is new you need to Accept the iLife apps; iPhoto, GarageBand and iMovie into your Mac App Store/iTunes account. Open the MAS, sign into you account, go to the Purchased pane and accept the apps.

  • How to Copy Roadmap using RMDEF, and NOT generate a transport

    We want to lock down our production environment from any configuration, but still be able to maintain our Roadmap, via RMDEF/RMAUTH, without generating any transports. Is this possible? Or must I always generate and push the transports from our development/configuration client to production?

    You need to read the error messages more closely:
    01652, 00000, "unable to extend temp segment by %s in tablespace %s"
    // *Cause:  Failed to allocate an extent for temp segment in tablespace.
    // *Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more
    //         files to the tablespace indicated.
    01653, 00000, "unable to extend table %s.%s by %s in tablespace %s"
    // *Cause:  Failed to allocate an extent for table segment in tablespace.
    // *Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more
    //         files to the tablespace indicated.When you do CREATE TABLE t AS SELECT ... Oracle initially creates the table as a temporary segment in the tablespace where the table will reside.
    The ORA-01652 indicates that there is not enough space in the table's tablespace (the table you are trying to create) to grow the table to the size required. It has nothing to do with your temporary tablespace.
    The ORA-01653 means that there is not enough space in the tablespace for an existing table to add another extent.
    In both cases, you need to add more space (either by adding new datafiles, or by extending the existing datafiles) to the table's tablespace (again, not the temp tablespace).
    Just a question. If updating the tables once a month takes too long, why not increase the frequency of updating the tables? If you are on 9i, you may also want to take a look at the mege command.
    TTFN
    John

  • How to reboot windows using java program?

    Hi,
    If I want to reboot the windows by Java Program,How?
    Thank you!

    what about windows server 2003?
    Runtime.getRuntime().exec("shutdown -r
    ");it will work only for windows xp

  • Website use Java but not support Microsoft JVM

    This website (www.esdlife.com.hk) only support Microsoft JVM but not Sun JAVA JVM, I can't logon into their service pages until I disable my Sun JVM or unless I use another computer it has Microsoft JVM installed. Those pages even don't let me use other web browser like Netscape except Internet Explorer. I am an amateur Java programmer and I have been studying Java for three years. I don't know if this is an issue to the future of Java Technology. This website supported by the Hong Kong government I believe. Could anyone response my question?
    Thanks in advance!
    Peter
    [email protected]

    What has probably happened is that the site you are talking about wrote thier page with Microsoft Java, which isn't really Java. They probably used some class, or number of classes, that is specific to the Microsoft VM. This is not a problem with Java, it is a problem with Microsoft makeing their Java uncompatible with Java.

  • How come my firefox 9.0 will not support apps on facebook?

    had firefox 8.0, deleted this , downloaded google chrome, deleted this, downloaded firefox 9.0 today and more trouble than ever with loading apps. on facebook.

    Check the Control Panel Mouse options possible something is messed up in Firefox since another had a complaint that in that area, and and seemed to have the horizontal and vertical options reversed or something.
    Look for the "Gestures" tab in the Mouse section of the Control panel while the mouse pad is active.

  • How to get rid of charging is not supported by this accessory on my phone?

    it has been doing this for a month now, my phone is crazy slow, and my music doesnt work, it will play five songs then stop and it takes hours to put anything on my phone, i have done everything, reset and bring it into the att store, please help

    See if this helps: iPad: Charging the battery

  • Help stop: "Service instances do not support events yet"

    on 5 november i upgraded to OSX 10.10. within a day or so i noticed i started getting a lot of spinning beach balls intermittently. it appeared to happen when using firefox. i upgraded to the latest version and kept noticing the beach ball. i happened to check my log files and found the system.log being filled with this:
    Nov 12 15:03:27 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.9229A58C-96C5-45A6-8527-C2F1AA18EC3E): Service instances do not support events yet.
    Nov 12 15:03:30 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.8BB1AFEB-C2CE-4710-A8FA-0488384A474E): Service instances do not support events yet.
    Nov 12 15:03:36 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.62531F76-3E31-486E-ABD6-1A4FB62426C0): Service instances do not support events yet.
    Nov 12 15:03:37 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.74200D21-6451-4171-96A4-8E98B7330897): Service instances do not support events yet.
    Nov 12 15:03:39 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.47D30C54-9F9E-4600-87CD-7D099BBB869A): Service instances do not support events yet.
    Nov 12 15:03:40 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.C1F3C6DC-0B1C-4803-872D-E00E5FBD0FDC): Service instances do not support events yet.
    Nov 12 15:03:43 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.72516ADE-D5EC-44F4-90BB-BEAF25477FE3): Service instances do not support events yet.
    Nov 12 15:03:46 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.7917AEE1-57A5-4B73-AF1C-2D7EEE5059AB): Service instances do not support events yet.
    Nov 12 15:03:51 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.C9C4C114-0F35-4A75-92BC-455A77A54E3D): Service instances do not support events yet.
    Nov 12 15:03:53 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.B74DA130-4409-41E7-BC0E-B634902D5E59): Service instances do not support events yet.
    Nov 12 15:03:54 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.39A80443-46B2-49EC-A99C-FDCEF160843C): Service instances do not support events yet.
    Nov 12 15:03:56 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.3ECC6066-D425-4816-89AC-9078A774604B): Service instances do not support events yet.
    Nov 12 15:03:57 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.07336764-BCFD-417A-ABB2-210F71110641): Service instances do not support events yet.
    Nov 12 15:03:59 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.286B599E-C409-4D66-9F30-20FAE6D0DDEE): Service instances do not support events yet.
    Nov 12 15:04:00 Dads-Computer com.apple.xpc.launchd[1] (com.apple.ftpd.3E49958A-A52B-4EE1-8AB9-BE9CBAA058A5): Service instances do not support events yet.
    I thought maybe there was a conflict between firefox and yosemite so downgraded firefox but the messages keep flowing.
    anyone have an idea of what this means and how to stop it?
    my guess was that the spinning beach ball is likely related to whatever application is trying to use some event not supported by Service instances.
    this is on a 2013  27" imac, 3.2GHz, 16GB RAM, macOSX 10.10

    Well I found a way to stop this error. I stopped the ftp service/server (whatever) and unloaded it
    using a couple of commands i found from someone else who had an issue with starting and stopping their ftp service.
    >>  launchctl stop com.apple.ftpd
    >>  launchctl unload -w /System/Library/LaunchDaemons/ftp.plist
    ran as root. this completely changed the behavior of my computer response. spinning beach balls seemed to have stopped (substantial reduction at this point)
    i guess if something comes along and says it won't work due to missing ftp service, i'll deal with it at that time.
    problem is solved for now.

Maybe you are looking for

  • IPod nano 3rd generation showing up in ITunes but will not synch

    I created new playlists in iTunes about 2 months ago and they synched to my Nano with no problems.  I created a new playlist yesterday, plugged in the Nano via a USB and I can't get iTunes to synch with Nano.  So the current playlists on it do not sh

  • Imacs BuggyCrappy: Windows 7 and windows 8 not working

    Imac not working as it is supposed to wrt bootcamp windows. Had made rounds to applestore like 10 times and working with online executives. Got to know that fusion drives are not easy to work. Either windows 8 or windows 7 works. Apple is saying afte

  • Itunes: Intertwining external hard drive and PC hard drive?

    I just moved my iTunes library from my old computer to my new one. But there's a problem. I want to have my computer rely on its own hard drive for the storage of my iTunes, but it currently relies on my external hard drive. I would also like to have

  • In Lion, can I hide the address book without the application closing?

    In Snow Leopard, when I clicked the red circle in the upper left-hand corner of the address book, the application automatically hid without closing entirely. In Lion, the same action closes the application so every time I need to use it, the address

  • Can't access email server after Installing Yosemite

    I installed Yosemite three days ago. Since then I have been unable to send e-mails. For some reason my workplace server does not like my password. I checked the validity of my password via another computer and it seems to be fine. I can receive e-mai