SFE2000 CLI- does it exist??? Please help if you know!

Is there a CLI, other than the terminal mode menu, for this switch?
I would much prefer to use a CLI to configure it than the (web) menus available.
The web menus are confusing and the manual is long. I already know how to configure Cisco Switches via the CLI quite well.
Please help. Thanks you!

Hello Mark,
Thank you for participating in the Small Business support community. My name is Nico Muselle from Cisco Sofia SBSC.
To access the CLI, go to the entry page of the menu based console, then press Ctrl+Z and type lcli. You will need to enter your login credentials again, after that you will arrive in the CLI.
Please note that the CLI on the SxE switches, although much similar, is not exactly the same as Cisco IOS.
Hope this was informative for you !
Best regards,
Nico Muselle
Sr. Network Engineer - CCNA - CCNA Security

Similar Messages

  • Error: Javax.mail does not exist, please help

    I have copies mail.jar and activation.jar in the classpath directory as instructed, then try to compile but got the below error: package javax.mail does not exist
    please help.
    G:\CRD>javac SendMailBean.java
    SendMailBean.java:22: package javax.mail does not exist
    import javax.mail.*; //JavaMail packages
    ^
    SendMailBean.java:23: package javax.mail.internet does not exist
    import javax.mail.internet.*; //JavaMail Internet packages
    ^
    SendMailBean.java:43: cannot resolve symbol
    symbol : class Session
    location: class SendMailBean
    Session l_session = Session.getDefaultInstance(l_props, null);
    ^
    SendMailBean.java:43: cannot resolve symbol
    symbol : variable Session
    location: class SendMailBean
    Session l_session = Session.getDefaultInstance(l_props, null);
    ^
    SendMailBean.java:48: cannot resolve symbol
    symbol : class MimeMessage
    location: class SendMailBean
    MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
    ^
    SendMailBean.java:48: cannot resolve symbol
    symbol : class MimeMessage
    location: class SendMailBean
    MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
    ^
    SendMailBean.java:50: cannot resolve symbol
    symbol : class InternetAddress
    location: class SendMailBean
    l_msg.setFrom(new InternetAddress(p_from)); // Set the From address
    ^
    SendMailBean.java:53: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.TO,
    ^
    SendMailBean.java:54: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_to, false));
    ^
    SendMailBean.java:57: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.CC,
    ^
    SendMailBean.java:58: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_cc, false));
    ^
    SendMailBean.java:62: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.BCC,
    ^
    SendMailBean.java:63: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_bcc, false));
    ^
    SendMailBean.java:68: cannot resolve symbol
    symbol : class MimeBodyPart
    location: class SendMailBean
    MimeBodyPart l_mbp = new MimeBodyPart();
    ^
    SendMailBean.java:68: cannot resolve symbol
    symbol : class MimeBodyPart
    location: class SendMailBean
    MimeBodyPart l_mbp = new MimeBodyPart();
    ^
    SendMailBean.java:72: cannot resolve symbol
    symbol : class Multipart
    location: class SendMailBean
    Multipart l_mp = new MimeMultipart();
    ^
    SendMailBean.java:72: cannot resolve symbol
    symbol : class MimeMultipart
    location: class SendMailBean
    Multipart l_mp = new MimeMultipart();
    ^
    SendMailBean.java:83: cannot resolve symbol
    symbol : variable Transport
    location: class SendMailBean
    Transport.send(l_msg);
    ^
    SendMailBean.java:98: cannot resolve symbol
    symbol : class MessagingException
    location: class SendMailBean
    } catch (MessagingException mex) { // Trap the MessagingException Error
    ^
    19 errors

    Another person who doesn't understand how to set CLASSPATH.
    Move those JARs into the same directory as your SendMailBean.java and do it like this:
    javac -classpath .;mail.jar;activation.jar -d . *.java
    java -classpath .;mail.jar;activation.jar SendMailBeanRead how to set CLASSPATH properly:
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html

  • Hello - does anyone now how to place a complain for an over charged invoice over a in-purchase game? Apple is charging 10 times more the purchase we made and I cannot find anyplace in the App store to complain online or via email? Please help if you know

    Hello - does anyone now how to place a complain for an over charged invoice over a in-purchase game? Apple is charging 10 times more the purchase we made and I cannot find anyplace in the App store to complain online or via email? Please help if you know

    Use the Report a Problem link in the iTunes email receipt you received. Also in-app purchases can be made without the password if you bought the app within the last 15min. You should enable the in-app restriction in Settings.

  • Error message ORA-27101 shared memory realm does not exist,Please help me

    My oracle(oracle 8.1.6) is installed successfully,But when I connect to the database it shows me the error:
    ORA-27101 shared memory realm does not exist.
    How can I deal with it?Please help me.

    The OTN Customer Service - Feedback forum answers questions relating to the OTN site and other customer service issues. It does not answer technical or installation questions. Please post your topic in the appropriate forum.
    Best Regards, OTN Team

  • Javax.servlet does not exist  (please help)

    i was going to try my first example nad follwing head first
    package com.myweb.trying;
    import  javax.servlet.*;
    import  javax.servlet.http.*;
    import  java.io.*;
    public class Serv1 extends HttpServlet {
         public void doPost(HttpServletRequest request,HttpServletResponse response)throws IOException,ServletException{
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("Shutup and see this");
              String c = request.getParameter("color");
              out.println("<be>the color selected is"+ c);
    }on giving the command
    C:\project1\app1>javac -classpath c:\Tomcat6\lib\servlet-api.jar:classes:. -d classes src\com\myweb\trying\Serv1.java
    this is what i got
    src\com\myweb\trying\Serv1.java:3: package javax.servlet does not exist
    import  javax.servlet.*;
    ^
    src\com\myweb\trying\Serv1.java:4: package javax.servlet.http does not exist
    import  javax.servlet.http.*;
    ^
    src\com\myweb\trying\Serv1.java:7: cannot find symbol
    symbol: class HttpServlet
    public class Serv1 extends HttpServlet {
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                                                         ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class ServletException
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                         ^
    6 errors please help what im doing wrong
    i have latest ver.6 of tomcat installed

    exchange the : in your classpath with a ;
    windows, in its infinite wisdom, uses a semi-colon as the path separator. the colon is what you would use if you were on unix, macosx, or linux.
    == eldrich

  • ORA-27101: shared memory realm does not exist - Please help!!!!!

    OS : Win 2000 server
    After good installation, when I want to connect instance ORCL by using SQLPLUS worksheet (as system/manager), I got this 2 error messages :
    ORA - 01034 : Oracle not available
    ORA - 27101 : shared memory realm does not exist
    In regedit: Ora_home = "my true path to Orahome directory
    Default_SID = ORCL
    Thank you for help !!!!!!

    Can you connect using plain SQL*Plus (sqlplus.exe)? Your database may not be started, try this:
    c:\sqlplus /nolog
    SQL>connect / as sysdba
    SQL>startup
    Then try connecting as one of the default users:
    SQL>connect scott/tiger

  • Please help if you know anything about Kontakt player 3.0.5, GPO & FCH?!

    Hi There. I am desperate for a solution as NI doesn't seem to be responding to my requests for help and support. Can anyone maybe offer any assistance?
    I installed Garritan Personal Orchestra & First Call Horns and then installed Kontakt Player 3.0.5 (Mac Pro 4-core 2.66Ghz, Mac OS X.5.8 ) and it finally picked up these instruments in Logic Pro 8.0.2.
    Soon after I started noticing that if I load a song up with some instances of the Kontakt player 3 (GPO and or FCH loads into Kontakt player 3) my sample banks come up as DEMO's, asking me to activate the product in-order for it to remove the 30 min time limit the demo mode imposes.
    It does this even though all my soft synths are activated and is clearly indicated so in the NI service centre program.
    Can anyone out there please help me or give me advice? I really need my soft synths that run inside Kontakt player 3 to STOP showing up as demo's.
    Also does anyone know why NI is not answering me? Are they in the habit of ignoring their clients?
    Thanks so much for any assistance given.

    No I have my own iPhone iPad and MacBook  so everything is set up on devices that are mine and as far as I know I never connected to anyone else's device and logged with my apple ID.  But are you saying it is possible for someone to have obtained my apple ID and send an iMessage from their device with my contact information so it looks like it came directly from me?  It's crazy I looked down at my iPhone and saw this message had just been sent that I did not type or send

  • Iphoto.  When I play an album "slideshow" some photos show up as a blank/black screen.  Please help if you know what I am doing wrong.

    Iphoto Question
    When I playing a "slideshow" album, a few photos show up as a blank screen.  Also, when I select a photo in an album to make it full screen - some photos won't "hold" - they go full screen for about a second, then the screen goes blank.  Any ideas about what I am doing wrong?  Thank you.

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/ Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help: As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • I believe some how some way my iPhone or appleID has been hacked into.  My iPhone sent 3 iMessages out that I did not type or send - 2 while I was sleeping and one while I was in mid imessage conversation.  Please help if you know anything about this!

    I believe that my iPhone or apple ID has been hacked into.  Three imessages were sent from my phone that I did not type or send - two while I was asleep at 1:15am and in the morning during an iMessage conversation.  These messages were to my boyfriend about my boss.  Apple and AT&amp;T have been somewhat helpful but both are pointing fingers at the others saying they cannot track the message or see if my personal information has been compromised.  I feel extremely violated because this hacker knows who my boyfriend is and who my boss is and I just started this job two weeks ago!  I am about to go to the police because this person is trying to taint my good reputation and destroy my relationships at work and in my personal life.  Does anyone have any incite on how this could be done and is there any way to trace where those three iMessages were generated from??

    No I have my own iPhone iPad and MacBook  so everything is set up on devices that are mine and as far as I know I never connected to anyone else's device and logged with my apple ID.  But are you saying it is possible for someone to have obtained my apple ID and send an iMessage from their device with my contact information so it looks like it came directly from me?  It's crazy I looked down at my iPhone and saw this message had just been sent that I did not type or send

  • STRANGE problem with sound in SWF files...Please help if you know how...

    Hello,
         Okay, so, I recently learned how to use Adobe InDesign to create a book.  there is a lot a still don't know.  When I export my document as a SWF file, it works great and has sound and animations where it should.  However, if I move that SWF to a new location, such as my desktop or uploading it to an e-mail, it looses all the sound information.  To add sound to each page, I added a hidden object to each page that was the sound file so that I could attach it to a button.  It seems that it is loosing that sound file if I move it to a new location.  Any ideas or solutions?

    UPDATE:  I have learned that my problem is related to a "resourse folder" which must go wherever the file goes in order for it to have sound.  This is a bit inconvinient for me, as my client is computer illiterate.  I really want to find a way to just embed the sound into a file that you can just open and play.  To the best of my knowlege, SWF format is the only format that allows for the page turning animation.  Does anyone know a way to embed the sound into the SWF file or am I SOL here?

  • Kind of at a loss here, please help if you know

    Can you transfer your iTunes libraray to a different computer? As in, I have about 2,000 songs on my itunes, and I'm about to move and I have to get a new computer because this one isn't mine. Is it a problem to move all those songs onto a different computer? Am I going to have to redo all of that importing?

    There are a number of things you could do. One would be to network the to computers and transfer your iTunes folder from one to another. You can also use an iPod if you have one as a portable hard drive and move the folder with it though that would be considerably slower than computer to computer. Here are a few links that may help you out:
    New PC & moving iTunes library
    iTunes: Copying music between authorised computers with iTunes for Windows
    How to use your iPod to move your music to a new computer
    This article describes moving your music to another drive on the same computer but could be adapted to moving between networked computers: Moving your iTunes Music Folder

  • I have iphone 4 ios 6.1.3. My wifi disconnects everytime i lock my phone. Please help if you know the solution

    Please help

    But still its a disadvantage. Suppose my phone is in sleep mode and i get a chat message or some email. I wont get it at that moment, but after turning on my wifi manually, i'll receive the message. Dont you think its irritating?

  • Hello please help if you know

    im new to apple but I know about computers just not a lot I guess but I had an old 4g DDR ram chip from my dell and I tried to put in in my apple and the apple work fine before but now the power light just blinks and it just beeps now nothing else

    Your computer needs:
    Maximum Memory
    8.0 GB
    Memory Slots
    2 - 204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMM
    What is the spec of the RAM you used?

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

  • Customer PC3000 does not exist (please change entry in plant 3000)-INT STO

    Hi All,
    Iam getting error message while creating intercompany sto PO in my QA clinet.
    (Customer PC3000 does not exist (please change entry in plant 3000)
    Vendor maintained both the plant(supply and receeving plant)
    Customer maintained both the company code and sales org.(supply and receeving plant) then also Iam getting same error.
    I had checked OMGN t-code setting looks good.
    Same setting I had tested on DEV and SANDBOX its wokring fine.
    Please help me out how to solve this problem
    Thanks
    Raj K

    Hi,
    I am facing similar problem, When trying to create a PO for Intercompany stock transfer, I am getting the error message Customer XXX does not exist (Please change the entry in Plant XXXX).
    This error is appearing only in the Production system, but PO is getting created in Quality system. All the Master data, Configuration in both systems appears same. If you know any solution, kindly post.
    Regards,
    Onkar

Maybe you are looking for