SG300 1.3.7.18 Menu / WebGui

I have updated the Firmware on a 300 Series SG300-10 to version 1.3.7.18 and 1.3.5.58. In both versions, I don't have a menu config or a webgui more. Remains only the CLI. If I go back to the 1.3.0.62 version, menu and webgui are back.

No longer the WebGui and menu config supported in newer versions of firmware?

Startup is updated to 1.3.5.06

Hi Weyermann, yes the web GUI is always supported on the latest versions. If it doesn't, on the CLI, you can try to enable the HTTP Server

config t

IP http server

If it does not, by default, you can switch because there may be a corrupted software.

Tags: Cisco Support

Similar Questions

  • SG300-28 how updated to boot from file rfb - version 1.3.5.06

    I download new firmware version 1.3.5.58 I have on my switch SG300-28 zip package I found two files:

    sx300_fw - 13558.ros - this is the firmware

    sx300_boot - 13506.rfb is the startup code

    I've updated the firmware by swicth WEBGUI. ADMINISTRATION > FILE MANAGEMENT > FIRMWARE UPGRADE/BACKUP/LANGUAGE

    But I don't know how I can improve the STARTUP of WEBGUI or other... Please help me a tell my way step by step.

    Hi Piotr, the trunk can be loaded via TFTP. When you go to Admin-> management-> Firmware Upgrade/backup files, you will notice that the start option is gray if the HTTP/HTTPS is enabled. If you choose the TFTP option everything becomes active.

    If you do not have a TFTP server, you can download TFTPD32 (332 bit) or TFTPD64 (64 bit). It's free and very simple.

    -Tom
    Please mark replied messages useful

  • SG300 - 28 p and SG300-52, what is the difference?

    Hello

    I have SG300 - 28 p that I use as layer-3 switch. Recently, I ran to switch SG300-52 and even if loading the firmware even does not give me option to do 3-layer switching. For SG - 300 I see options in the GUI to create interfaces vlan under the information section of intellectual property, while SG300-52 option IP information only under the management section.

    Please let me know if these are 2 types of different materials and L3 is not possible on SG300-52. If its possible to activate the L3 switch on SG300-52, please tell us what Miss me in the config.

    Thanks in advance,

    Sam

    Hello Smunzani, there no difference in switches aside what is obvious, there POE and it has 52 ports vs 28 ports.

    To enable L3, you can console the switch and use the command

    "configure the router mode system.

    You can also set the mode of the system via the menu if you're using the old 1.0.0.27 firmware (that does not support the CLI textview)

    If you do not have access to the console, you can connect to the GUI and go to SECURITY-> TCP/UDP SERVICES and activate telnet then telnet to the switch as well.

    -Tom

  • SG300-28 import self-signed SHA2 certificate to the SSL Protocol (including the format? How do I?)

    1. What is the format a certificate and private key combination should play during import to use SSL?

    2. how actually import you - via CLI or web interface.

    I'm trying to import an SSL certificate that is self-signed in the SG300-28 to secure the connection to the web interface of the switch. The certificate is signed by my own 'certification authority' / custom root certificate.

    I tried to do it via the graphical interface of web management (security > SSL server > server SSL authentication) and the command-line via SSH. I will detail my exact process below. I had no problem importing a certificate created in the same way to the Cisco RV320 router, although the web interface is different.

    How to create a certificate that is accepted by the switch?

    (Image Active) firmware version: 1.4.0.88

    My approach:

    1. OpenSSL 1.0.1f January 6, 2014; on an ubuntu 14.04 machine
    2. Create my own, certificate of self-signed root:

     openssl genrsa -out rootCA.key 2048 openssl req -x509 -new -nodes -key rootCA.key -days 3650 -out rootCA.pem

    3. create a private key and the real certificate and sign them using the rootCA.pem:

     openssl genrsa -out switch.key 2048 openssl req -new -key switch.key -out switch.csr openssl x509 -req -in switch.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out switch.crt -days 3500

    for later use, export the public key of the switch.key - file using

     openssl rsa -in switch.key -pubout > switch.pubkey

    4. open the web interface of the switch and check for the SSL settings (Security > SSL server > server SSL authentication).

    4.1 click "import certificate".

    4.2 paste the contents of the switch.crt file in the ' certificate:'-textbox

    4.3 to import pair of RSA keys

    4.4. Paste the contents of the switch.pubkey file in the public key field

    4.5 by selecting the 'Clear text' radiobutton control and paste the contents of the inside switch.pubkey

    4.6 click 'apply '.

    4.7 receive an error message 'invalid key head '.

    The private key looks like this (oviously, I created a new one for this example):

     -----BEGIN RSA PRIVATE KEY----- MIIEpAIBAAKCAQEA3gOvNzKqULXnT7zL9fl4KJAZMo5eYHfwPSN0wl385na37oHz [23 more lines truncated] aB7Pooa60anjIVJmlSIp4WJ8U+52BMKJZ5rqHnJ1sBBo1zpAtcdspg== -----END RSA PRIVATE KEY-----

    I also receive a header invalid key error when you try to import the private via CLI SSH key using:

     switch(config)#crypto key import rsa

    I also converted the certificate and the private in PKCS12 and then back to the PEM key that gives me the following private key "head" which is not always accepted when pasting in the CLI:

     Bag Attributes localKeyID: FE 24 88 34 66 BE E9 DB CE 4E 91 23 2C 0E 03 B1 A7 58 32 24 Key Attributes:  -----BEGIN PRIVATE KEY----- MIIEvgIBA[...] -----END PRIVATE KEY-----

    What key header miss / what am doing wrong in general?

    It seems that ' import key cryptographic rsa "command is not suitable for import SSL key related private, but rather for the importation of SSH keys. Code "key header is missing" means that switch expects anything other than "-----BEGIN RSA PRIVATE KEY-----", for example the headers that you can see after the execution of ' view keys cryptographic rsa "(- START PRIVATE KEY ENCRYPTED SSH2-).

    To get your SSL certificate installed, you have two options:

    The CLI option:

    • create a RSA private key with command

     switch(config)#crypto certificate 2 generate key-generate 1024

    • create the certificate request with

     switch#crypto certificate 2 request

    (don't forget to provide all information for this order, including '' cn '' and so on). Note that this command must be executed inside the privileged mode and not in mode configuration as the previous command.

    • After you run this command, you'll get sign certificate request (CSR). Copy and paste it into the new file on the server that hosts your certification authority.
    • now sign this CSR file with the command that you have already used:

     openssl x509 -req -in switch.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out switch.crt -days 3500

    • After signing to just open the file "switch.crt" and copy all content between BEGIN and END section including.
    • and import this certificate with order

     switch(config)#crypto certificate 2 import

    • and finally for your certificate to be active, do it with the following command:

     switch(config)#ip https certificate 2

    WebGUI option:

    Here, the procedure is similar to the CLI:

    • You must click on "Generate certificate request" in the "Security-> SSL server-> server SSL authentication" section, fill in all necessary data and click on "Generate certificate request."
    • you will get CSR data you need to paste into the server with the certificate of the CA.
    • sign the certificate with the command openssl similar as mentioned previously
    • and import a certificate with maintaining "import RSA Key-Pair" unchecked.

    Personally I've never managed to get imported both key and certificate from the outside.

  • Build the menu command does not appear does not (v7.0)

    I'm not able to see the menu in the order of generation. I tried to uninstall and then reinstall Keynote, but also remove the plist file in my preferences, but cannot get the menu to appear. I searched online, and it seems that no one else knows this problem. I use a MacBook Pro 13 "mid-2014 MacOS 10.12

    Is there anything I can try to get this working? It is a menu that sorely miss me.

    To answer my own question, I closed the Keynote used AppCleaner to get rid of the supporting files for Keynote, then restarted the app and everything was fine.

  • The menu bar clock freezes after recovery from sleep mode

    After the upgrade to Sierra, I noticed that the clock in the menu bar (top right) show wrong time.  This occurs when the iMac comes out of his SLEEP.  When I hoover the pointer of the mouse on the clock, it would turn into a spinning ball (i.e. no response).  I have to disconnect and reconnect so that the clock in the menu bar to indicate the correct time.  She would continue to work until the next time that the iMac comes out of SLEEP.

    Anyone facing this problem?

    Have you tried booting in safe mode (hold down the SHIFT key at startup)? The problem persists?

    If you create a new user account, does?

  • I have a grey spinning wheel in the menu bar...

    I have a wheel that turns in the menu bar. I can't delete it, and if I click it, the words "close - close subfolders ' seems... what? What should I do to remove it?

    The following thread might solve your problem.

    Clock bar menus and spinning wheel

  • Missing items in the menu go Finder

    Hi, having a problem with one of our macs, after upgrading to Mac OS Sierra, it does not show library in the finder, open menu when you press and hold ALT option  When you create a new user profile to test the behavior even under this profile, the problem does not occur.  I don't know if it is a preferences file that could be the cause, hoping that someone else who maybe has a good idea of what could be the cause?  We tried to remove the com.apple.finder.plist files and restart just to see if it fixes, but have so far not been successful to actually solve the issue.  Thank you!  David

    Try this:

    1. In the OS X Finder, pull down the Go menu and choose homepage
    2. Pull down the view menu, and then choose Show Options
    3. At the bottom of the list of Display Options settings, check the box to display the library folder

    Now, you won't have to do the round of ALT go.

  • How to remove the period/point of the day and month in the menu bar

    Since the upgrade to Sierra I noticed that the day and month in the menu bar have now periods (diaphragm openings) after them, for example 'Sun' instead of 'Sun '. It is not possible to change this by using the language and region settings. I find them boring. Is there any other way (for example by using Terminal Server) to get rid of them?

    This is the default value for the Australia, for example. What region is selected in system preferences?

  • Sierra - Menu bar - Beachballing with frozen time

    Since Sierra on 2 MacBook that I sometimes noticed that the time in the menu bar is not updated and if I put my mouse over the menu bar it is beachballing.  A restart of the MacBook solve the problem... until next time.

    Anyone else seeing this?

    I see this same question. I noticed is all the native OSX system elements in the menu that are frozen bar (volume Yes, wifi, battery, time, airplay, siri, etc.), but the non-native elements are not frozen (slack, dropbox, etc.).

  • Where is the Menu bookmarks?

    In Safari 10 I can only add bookmarks to the 'Favourites' section or to bookmark files, I created myself. I can't add to the bookmarks Menu more because apparently disappeared? Is this a bug? Now I can not add my favorites for the 'root' of the bookmark list more. My bookmarks section contains a list of folders of bookmarks and a few bookmarks in the upper slot that I did not put in such a folder. I used to select the Menu bookmark to add those and decided later if I want to move to a folder of bookmarks. But this Menu bookmarks option has now disappeared. It is not anywhere between my either custom files. So where is he past?

    Open the Bookmarks Sidebar, then click on the URL, and then drag it to the bookmarks.

  • Invisible icon in the State without a Menu bar

    Hey,.

    In my status bar, there is an invisible icon that I want to delete. If I click on the icon ' ' there is no menu, and I can't understand what program the thing could come.

    I took a screenshot when I click the icon:

    Does anyone has an idea how can I remove this "icon"?

    I am now on macOS Sierra, but it was there before I upgraded too.

    Click the Apple logo in the upper left corner of the screen, choose force quit which should list all running requests... you should be able to choose the mysterious application from there. Otherwise, start by smoking one by one

  • judgment of new e-mail drop-down menu

    How to stop these little boxes of new emails coming down on the top right of my macbook air

    Hi Bunt11,

    I understand that you do not want to stop the boxes that appear at the top right of the screen on your MacBook Air (also known as the notifications) when you receive the e-mail. Fortunately, this can be done relatively easily in the system preferences. You can open the system preferences () in the Dock (if she appears at the bottom of your screen), or in the Apple menu > System Preferences. Once you'll want in system preferences, click Notifications, and then click Mail in the list on the left and select "None" rather than "Banners" or "Alerts" on the right.

    Notifications systems of preferences allows you to indicate when you do not want to be disturbed by notifications and set options to control how apps to display notifications and how they are sorted in the Notification Center.

    To open these preferences, choose Apple menu > System Preferences, and then click Notifications. Select do not disturb or an application on the left, then view or change the settings on the right.

    Alert style [app]

    Select a style for notifications from the app:

    • No: Notifications do not appear on the screen.
    • Banners: Notifications are displayed on the screen and disappear after a while.
    • Alerts: Notifications to remain on the screen until that fire you.

    Mac Help - preferences of Notifications

    Kind regards.

  • Choose several folders with choosing menu and empty their contents

    Hi all

    new to applescript and want to create a file menu choose where I can choose several folders and empty their content. There will be a dialog box at the end let me know that the files have been purged. The script I'm working for an individual file:

    say application 'Finder '.

    Close each window of

    Open (choose folder with prompt "including one or more folders should purge?" multiple selections allowed location 'True' by default ' / users/bryceratops / ')

    Set an to front Finder window

    move each agenda a in the trash

    Close front The Finder window

    end say

    say application 'Finder '.

    display the dialog box buttons "purged records." {"ok"}

    end say


    But Im having this script to open, purge and close every finder window, if I selected several files in the menu choose a wire installation difficult.


    Any ideas?


    See you soon

    Hello

    Put the output of the command 'choose folder' in a variable (no need to open these folders).

    ----

    the tFolders value (choose a folder with default location "including one or more folders should purge?" guest "/ users/bryceratops / ' with multiple selections allowed)

    Tell application "Finder".

    Repeat with thisDir in tFolders

    remove items from thisDir - trash

    end repeat

    tell the end

    activate

    display the dialog buttons "purged records." {"ok"}

    ---

  • Icon not appearing SIRI is not in the menu bar

    Just installed Sierra - Siri icon appears in the dock but no menu bar. How do I configure that?

    Go to the system preferences window click the siri, then in the window to disable the Siri display in the menu bar and then on again.

Maybe you are looking for