Problem with security of the ports and disabled learning MAC addresses?

Hello

Is there a problem, or incompatibility, if you configure the port-security on "n" ports that belong to X vlan and also disable mac-address-table of learning on this vlan?

Someone did he do reference, links or PDFs on this problem?

Thank you very much

Best regards.

Hi Javier,

As I showed above, the combination is valid. I did not all static entries in the security of the ports, but all entries learned through port security will be shown as static on the show see the mac address table. All dynamic learning is disabled.

I don't know what kind of security problem, that you try to resolve, but the configuration is valid.

Daniel Dib
CCIE #37149

Please evaluate the useful messages.

Tags: Cisco Security

Similar Questions

  • Have error code 0 x 80070020 then that he was trying to run backup... tried with security off the coast and still the same error message... solution?

    Have error code 0 x 80070020 then that he was trying to run backup... tried with security off the coast and still the same error message... solution?

    Hello

    make backups on an external hard drive or DVD

    see if this information helps you

    How to make a backup of your data (all Vista versions)

    http://www.vista4beginners.com/how-to-backup-your-data

    How to restore your files

    http://www.vista4beginners.com/how-to-restore-files

    the 1st link below is how do the backup complete pc (Vista, full and professional company)

    http://www.bleepingcomputer.com/tutorials/tutorial145.html

    and that is how do to recover the backup complete pc

    http://www.bleepingcomputer.com/tutorials/tutorial144.html

    and here is the information of microsoft in restoring a system image backup

    http://Windows.Microsoft.com/en-us/Windows-Vista/restore-your-computer-from-a-system-image-backup

    If you have problems with the repost of process above in forum microsoft link that is specific to the backup below questions

    "This forum supports questions for the default backup utility in Windows Vista, Server 2008 and beyond."

    http://social.technet.Microsoft.com/forums/en-us/WindowsBackup/threads

  • Problem with LDAP in the APEX and not in sql query * more

    Hello everyone.

    Hereby, I refer to an existing thread: Query LDAP APEX

    I have a problem using LDAP in the APEX (DB version: 11.2.0.2.0;) APEX version: 4.0)

    I get "Authentication failed" by their SUMMIT. However, when I run it in SQL * more (SQL Developer) (I created it as seen in the referenced forum thread) it works! Can I use my own function, but that looks like reinventing the wheel.
        l_ldap_host := 'oursite.be';
        l_ldap_port := '389';
        l_ldap_domn := 'oursite';
        l_ldap_user := i_username;
        l_ldap_pass := i_pw;
        l_ldap_base := 'ou=oursite,dc=oursite,dc=be';
    
    
        dbms_ldap.use_exception := true;
        
        l_session  := dbms_ldap.init(l_ldap_host,l_ldap_port);
        l_retval   := dbms_ldap.simple_bind_s(l_session, l_ldap_domn||'\'||l_ldap_user, l_ldap_pass);    
        l_attrs(1) := 'name';
        l_attrs(2) := 'title';
        l_retval   := dbms_ldap.search_s(
                        l_session, 
                        l_ldap_base, 
                        dbms_ldap.scope_subtree, 
                        '(sAMAccountName='||l_ldap_user||')',
                        l_attrs,
                        0,
                        l_message
                      );
    
        l_retval := dbms_ldap.count_entries(l_session, l_message);
    We must search the sAMAccountName because that contains our login credentials (dennis.surname). The common name is just our full name (Dennis Surname)


    At the SUMMIT, I have these settings:

    * LDAP host: oursite.be
    * Port: 389
    Use SSL: No SSL
    Use exact DN: No.
    * String DN: ou = oursite, dc = oursite, dc = be
    * Search filter: sAMAccountName = % LDAP_USER %


    When I try to test it I get "Authentication failed" but I don't know why. It works very well in sql * more (in the the same pattern of course!) so I have really no idea what I'm doing wrong. In addition, the message comes instantly and sql * more it takes about a second to authenticate.

    I tried so many things! remove the 'or '. Connect with my name, change 'cn = % LDAP_USER %' filter, connect with dennis.surname and Dennis Surname, using exact DN,... and all the possible combinations of them... Nothing works.

    I can go further by using my own function, but I really want to use the settings of the APEX, because it's so much easier.

    Thanks in advance for help out me!
    Dennis

    Hi Dennis,

    Try this

    The exact use DN Yes value
    Change your DN string to

    %LDAP_USER%@domain
    

    or

    domain\%LDAP_USER%
    

    The authentication uses a simple_bind_s. You must use the same syntax in these text boxes. You actually do a single with bond

    dbms_ldap.simple_bind_s(l_session, 'sAMAccountName=' || l_ldap_user, l_ldap_pass);
    

    It does not work. It's the syntax to use in the search for search_s filter.

    Please keep in mind that the apex_040100 (for apex 4.1) user must connect the rights on the domain server.

  • Problem with using of the audit and the APEX triggers

    Hello community,

    I have a little problem with the help of a trigger to audit. I can't operate the trigger takes the reality of the user to record in the audit table:

    DDL in the table:
    create table BOOKS
    (
      B_ID           NUMBER not null,
      B_NAME         VARCHAR2(100),
      B_DESCRIPTION  VARCHAR2(500)
    );
    DDL audit table:
    create table AUDIT_BOOKS
    (
      B_ID           NUMBER not null,
      B_NAME         VARCHAR2(100),
      B_DESCRIPTION  VARCHAR2(500),
      AUDIT_USER VARCHAR2(50),
      AUDIT_DATE   DATE,
      AUDIT_ACTION   VARCHAR2(6)
    );
    ddl trigger:
    CREATE OR REPLACE TRIGGER trg_audit_books
      AFTER DELETE OR UPDATE ON books
      FOR EACH ROW
    DECLARE
      v_trg_action VARCHAR2(6);
    BEGIN
      IF updating
      THEN
        v_trg_action := 'UPDATE';
      ELSIF deleting
      THEN
        v_trg_action := 'DELETE';
      ELSE
        v_trg_action := NULL;
      END IF;
      INSERT INTO audit_books
        ( B_ID,  B_NAME,  B_DESCRIPTION,
          AUDIT_USER,  AUDIT_DATE,  AUDIT_ACTION)
      VALUES
        (:OLD.B_ID, :OLD.B_NAME, :OLD.B_DESCRIPTION,
          UPPER(USER), SYSDATE, v_trg_aktion);
    END trg_audit_books;
    Column AUDIT_USER always gets "APEX_PUBLIC_USER" as a value of insertion. How can I change to the user real "& APP_USER."?
    I tried under Home > Application Builder > application 100 > shared components > change attributes for security > authentication > Public user
    And added & APP_USER. and: P101_USERNAME both have not changed anything.

    Is there a way to get to work with & APP_USER. instead of APEX_PUBLIC_USER?

    I use the standard authentication scheme 'Application Express'. I use ldap via a process to the login page.

    Kind regards

    Tobias

    Hello Tobias,.

    In the trigger instead of the USER code, use v('APP_USER') to catch the real user of APEX.

    Greetings,
    Roel

    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.Logica.com/

    You can assign this answer to your question in marking it as useful or Correct ;-)

  • HP 255 G4: problem with sensitivity to the touch and slider jump

    My question - problem could be funny, but it's a problem.

    I bought HP 255 nine G4, from the box. First impression was: a pleasant experience, but first touch was terrible. I had several laptops, but never the same problem: cursor is wavering and being so inprecise it is almost impossible to locate some details using the key.

    I have included a picture of the surface of the laptop. Should I maybe take off this perforated layer and reach the brilliant below surface? I tried to peel on the rounded corners, but he can't go easily, so I didn't damage it.

    Please give me a sugestion. :-)

    I'll answer myself, could someone help.

    When I installed WIN 10, all problems are gone.

    With WIN 7, nothing worked, I was responsible for the search and looking for drivers, but USB 3.0 has not worked, F keys did not work, touchpad was terrible, all together, very bad.

    With 10 WIN, everything worked, only a few development was necessary.

    With the new computer (product end of September 2015) the new system (WIN 10) so enjoy.

  • Problem with upgrade of the computer and activate Windows, he stated that "the failure of key you entered is already in use.

    Original title: problem with upgrading the computer and Windows activation

    I have improved my week to loast of computer of an Intel Core 2 Duo to an Intel Core 2 Quad processor.  Now Windows tells me I need to register my product.  When I tried to do, he said that "the failure of key you entered is already in use.  To activate Windows, you will need another product key Windows Vista Home Premium. "How can I get MIcrosoft to realize that I have not installed Windows on multiple computers. I just put my equipment?

    Hi Tkelleyaustin,

    I suggest to check the following items and check if the problem still persists.

     

    Resolve activation problems

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-activation-problems

     

    Activate Windows on this computer

    http://Windows.Microsoft.com/en-us/Windows-Vista/activate-Windows-on-this-computer

    How to activate Windows Vista

    http://support.Microsoft.com/kb/940315

    I hope this helps.

  • Weird problem with control of the ring and foot

    So I have some sort of weird issue with a control of the ring and a chart. I'm with LabWindows/CVI on a Windows 7 computer. The part of the program I'm looking at is basically to navigate through data - there are several "transition" (rehearsals experience), and you can choose the one that you want to watch in the list.

    Normally, you would select transitional in the list, it plots the data, then it is done, basically. However, all of a sudden (don't know how long it spent for), when I select anything except 'Average', he made all the tracing and such, then it changes control of the ring to 'Average' (it is not plot the average data or generate all the reminders that I can tell).

    Now the thing the more bizarre as you can see below, it seems that the switch happens just when I draw something on the chart:

     

    So, it's just weird. The code in this section is here:

       if(uidc.polyon) {
                polynomial_subtraction(curr_data, np, uidc.polyord, 0); // 0 Skip for now
            }
    
            // Scale the curr_data for gains, then pre-scale the FFT data
            // to have no change in the power spectrum (multiply by (2/np)
            for(j = 0; j < np; j++) {
                fft_data[j] = curr_data[j]*2/np;
                curr_data[j] = curr_data[j]*uidc.fgain[i] + uidc.foff[i];
            }
    
            uidc.fplotids[i] = PlotY(dc.fid, dc.fgraph, curr_data, np, VAL_DOUBLE, VAL_THIN_LINE, VAL_NO_POINT, VAL_SOLID, 1, uidc.fchans[i]?uidc.fcol[i]:VAL_TRANSPARENT);
    
            // Prepare the data.
            FFTEx(fft_data, np, npfft, NULL, FALSE, curr_fft);  // Do the fourier transform
    

    DC is a structure that I use to better organize some UI controls and uidc is for display RAM variables, then dc.fid is the Panel that is embedded in the tab "FID", dc.fgraph = FID_Graph and corresponds to the chart control. Control of the ring is actually in a child Panel, dc.cloc [0]. FID_Graph has a point, it can produce, but the reminder is empty (no not coded something there yet).

    I have also considered that perhaps something in another thread (I don't think there is, but whatever) I see is the cause, however, this behavior still happens on that line. I tried to break in different locations, on hold, then continues, as well by adding a loop containing Delay (0.01), a loop of 100 times. Always happens after the conspiracy.

    Does anyone have any idea why this might be happening?

    Hi Paul,.

    I don't have a solution, but I wanted to point out that, even if you see the ring to change its value only when you call the function of tracing, that doesn't say what this function call that really changes the value of the ring. In CVI, some drawing operations are batched, for performance reasons, and the Panel updates only visually at certain times. One of those moments when you draw a chart data. Yes, the ring changes visually at this time there, but it is probably just 'catch up' a change earlier.

    As you are looking through the code, when the value of the ring, you can use the term > command update UI to force the update panel, so that you don't have to wait for the tracing function and see if all goes well this change happening earlier.

    Luis

  • Problem with image extract the content and the tile at the same time show on ListField

    My application is Application News get JSON webservice to appear on ListField.

    On each line in the list, it will show you the image thumbnail, title and Teaser as below.

    _______________________________________

    |                |                       Title

    |   Thumb  |_______________________________

    |_______  |                       Teaser

    First of all, I have to get JSON that contains the url of the thumbnail image, title and Teaser.


    I managed to view the title and Teaser, but the thumbnail is not. When I Fetch image with the url of the thumbnail image, it returns only bitmap = null for me.

    My method is first call httpdispatcher to get the thumbnail image, title and Teaser and then wait and call another httpdispatcher to retrieve the url of the image thumbnail, then added to listfield.

    Here is my code

    Class helloScreen{
    
    public void requestSucceeded(byte[] result, String contentType)   {      if (contentType.equals("image/png") ||        contentType.equals("image/jpeg") || contentType.equals("image/gif") ||contentType.equals("image/jpg")) {         bitmap_temp = Bitmap.createBitmapFromBytes(result, 0, result.length, 1);                     synchronized (UiApplication.getEventLock()) {
    
                   }         }         else if (contentType.startsWith("text/")) {
    
                  strResult = new String(result);
    
                 try {                     ja = new JSONArray(strResult);
    
                  } catch (JSONException e) {                   // TODO Auto-generated catch block                    e.printStackTrace();              }
    
               synchronized (UiApplication.getEventLock()) {
                                  int temp_int_next=0;
                    try {
                        callback.erase();
                         for(int x=0;x<10;x++){
    
                             j = (JSONObject) ja.get(x);
    
     String get_htmlOff_first = j.get("teaser").toString().substring(j.get("teaser").toString().indexOf(">")+1);
     final String thumb = replace(j.get("thumb").toString(),"files/","http://www.eng.chula.ac.th/files/");
    
                                    UiApplication.getUiApplication().invokeAndWait(new Runnable() {
    
                                    public void run() {
    
                           getImageURL(thumb); 
    
                                 }});                      
    
    callback.insert(j.get("title")+" ", ""+get_htmlOff_first.trim(), bitmap_temp , temp_int_next , "Event");                      temp_int_next++;
    
                      }
    
                       } catch (JSONException e) {                  // TODO Auto-generated catch block                    e.printStackTrace();              }               
    
                }         }         else {            synchronized (UiApplication.getEventLock()) {         Dialog.alert("Unknown content type: " + contentType);         }         }
    
    
    
    public void getImageURL(String url) {                HttpRequestDispatcher dispatcher2 = new HttpRequestDispatcher(url,                "GET", this);    }
    

    }

    httpRequest, class Dispatcher is used to get the data from the url

    public HttpRequestDispatcher(String url, String method, helloScreen screen)
    {
    this.url = url;
    this.method = method;
    this.screen = screen;
    
    }
    
    public String getType(){
    
        return type;
    
    }
    
    public void run() {
        try {
    
            if(WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)
           {
                connection = (HttpConnection)Connector.open(url+";interface=wifi");
         }else{
    
            String uid = getWap2Uid();
            connection = (HttpConnection)Connector.open(url+";deviceside=true;ConnectionUID=" + uid);
    
            }
    
        connection.setRequestMethod(method);
    
        connection.setRequestProperty("Accept","text/html, image/jpg, image/jpeg, image/,image/gif");
    
        int responseCode = connection.getResponseCode();
        if (responseCode != HttpConnection.HTTP_OK) {
        screen.requestFailed("Unexpected response code: " + responseCode);
        connection.close();
        return;
        }
        final String contentType = connection.getHeaderField("Content-type");
        final ByteArrayOutputStream baos = new ByteArrayOutputStream();
        InputStream responseData = connection.openInputStream();
        byte[] buffer = new byte[10000];
        int bytesRead = responseData.read(buffer);
        while(bytesRead > 0) {
        baos.write(buffer, 0, bytesRead);
        bytesRead = responseData.read(buffer);
        }
        baos.close();
        connection.close();
    
                  UiApplication.getUiApplication().invokeAndWait(new Runnable() {
    
                        public void run() {
    
                            screen.requestSucceeded(baos.toByteArray(), contentType);
    
                        }
    
                        });
    
        } catch (IOException ex) {
        screen.requestFailed(ex.toString());
        }
    }
    

    The point here is that I have JSON and get the url of the thumbnail to fetch before add to listfield. The image should be ready in bitmap_temp but it still get null.

    UiApplication.getUiApplication().invokeAndWait(new Runnable() {
    
                                   public void run() {
    
                           getImageURL(thumb); 
    
                                 }});
    
    public void getImageURL(String url) {                HttpRequestDispatcher dispatcher2 = new HttpRequestDispatcher(url,                "GET", this);    }
    
    callback.insert(j.get("title")+" ", ""+get_htmlOff_first.trim(), bitmap_temp , temp_int_next , "Event");
    

    All day trying to fix it but no success, so I need help from you guys.

    Thank you

    "Is it possible to leave only 1 thread completely pick 10 pictures.

    Yes and this is how I would recommend that do you it this way.  So have a Thread that you give a list of things to do and let it work through each.

  • Problem with menus on the right and the image is too right.

    Note the difference in size of menus, (unusual with the correct terminology). I can't the adjustments, layers, properties, etc. for all have the same size, increase width. Note that the loaded image is too far to the right under the menus. I have to go to the window/rearrange/float in the window to move the image to the left. Also I can not get the expand/collapse button to work. How can I solve these problems.

    Capture.JPG

    Try the Menu window > workspace > Essentials or Reset Essentials.

    ALT - w is the shortcut key for the menu of the window. (Windows OS)

    ALT-space you will get the menu resize, if you can not reach the buttons on the main window of the program.

    Gene

  • Problems with access to the internet - suspected hardware conflict (IP address)?

    Hello

    I wonder if you could help out me?

    I have problems with internet access on a wireless router with what appears to be a conflict between three different pieces of equipment.

    I have a laptop running Windows 7 & an Ipod Touch which access entered it internet without any problem on a Belkin 54 g wireless router.

    Everytime I turn on my Windows Vista desktop PC, both devices 'hang up' (not the o/s of just no internet access) desktop PC seems to have access to internet at the outset and then access toggle on and outside.

    I then shut down the PC and reset before internet access wireless router is available on the portable computer and the IPOD Touch. I find it very frustrating, because I want that all three devices to be able to access the internet at the same time.

    An error message came up initially on the laptop, marking an IP address conflict. I paid for for a guru PC "told" to come take a look at this - he made some changes to the IP address of the desktop computer, then it wouldn't be anywhere near the addresses of the other 2 devices, but this seems not to have solved the problem.

    Can you please specify? Any help would be welcome!

    Thank you very much

    Rob Fleetwood.

    Hello

    Method 1:

    I suggest you follow the link and check.

    Windows wireless and wired network connection problems

    http://Windows.Microsoft.com/en-us/Windows/help/wired-and-wireless-network-connection-problems-in-Windows

    Method 2:

    I suggest you follow the link and check.

    The problems of Internet connection

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-Internet-connection-problems

    Method 3:

    I suggest you follow the link and check.

    Get help with the message "There is an IP address conflict"

    http://Windows.Microsoft.com/en-us/Windows-Vista/get-help-with-there-is-an-IP-address-conflict-message

  • Problems with synchronization of the settings and the list of sites

    Hello!

    Recently got Adobe Creative Cloud CC 2015 but I'm a little disappointed that the version of cloud does not behave like a cloud version. Dreamweaver CM³ in synchronization settings, I set always use the Cloud version and then import the sync settings. Everything is marked in sync settings. My main computer at home has welcome screen off, and he has two sites in the list of sites. At work, I have always the Welcome screen and 1 single site in the site list. Tried to restart and apply updates whenever he says but its not doing anything.

    Hi Johnny,.

    We will not sync preference screen between different versions.

    In regards to the sites not getting not migrated, could you please follow the mentioned below as follows:

    1. open Dw CC and create a new site (dummy) and synchronize it to the cloud. This will ensure that all sites are synchronized to the cloud.

    2. close Dw CC and open Dw CC 2015, go to the Preferences dialog box > synchronize settings category and check the box "import the sync settings.

    3. close the Dw CC 2015 and restart the application. Let the full synchronization and push the button apply. This will get all the settings from the previous version.

    Let me know if you need help most.

    Thank you

    Confidante

  • I had endless problems with Lightroom since the purchase of subscription for one year in December 2014. Now, the development Module was disabled, as they claim that my subscription has expired...  He spent more time to work does not, and I'm bitterly briv

    I had endless problems with Lightroom since the purchase of subscription for one year in December 2014. Now, the development Module was disabled, as they claim that my subscription has expired...  He spent more time to work does not, and I bitterly regret it.  Help, please!

    Open the Adobe Creative Cloud application then go to preferences then sign out and then sign back with the same Adobe ID that you used to purchase the subscription photographers, that is to say the same e-mail address and password.

    Then open Lightroom and go to the Help menu and make sure that it is signed in with that Adobe ID email address.

  • Security of the port on a SF300 problem

    Hello world

    We recently bought a new SF300, the main goal was to using the security of the port as a CNA.

    I expect to be able to define a list of allowed MAC addresses, but unfortunately, it is not the case.

    I used the "Classic Lock" port security.

    knowing that I can't have all the computers being connected at the same time (for cause of displacement), when a person to be allowed is here I am forced to disable security so that the switch can learn its MAC address.

    the problem is that when I do, the MAC addresses that are already learned are forgotten if disconnected from the LAN and when someone changes his position in the local network, it is blocked from access to the network.

    I remember that my goal is to give access to the network based on the MAC address or the domain name (allow computers part of OurDoamin.com).

    N.B: In our architecture, each room has a small switch and these switches are connected "central one" which is the Cisco SF300.

    Thank you.

    Dynamic arp for this inspection. Specify a mac IP on the trust list, the client connection to the "secure" ports (meaning subject to inspection of the arp) then do 'secure' interconnection ports (that is, not subject to inspection arp).

    I'll tell you one thing... before playing with DAI, make sure to enter at least the host you are using, otherwise you will be hose to the top of this switch.

    -Tom
    Please mark replied messages useful

  • I was told that CC versions of Photoshop, InDesign and Illustrator are available with support right to left languages flawlessly.  Please order ME CC working with languages of the West and the Middle East.  My problem is no one that I spoke

    I was told that CC versions of Photoshop, InDesign and Illustrator are available with support right to left languages flawlessly.  Please order ME CC working with languages of the West and the Middle East.  My problem, it sucks, I talked to Adobe can tell me how to order the ME version.  I went around and for a week with them and have gotten nowhere.  I can't believe I'm the first person to ask for this version of CC and hope someone on the forum can point me in the right direction.  One last question - does anyone know how to reach support and talk to a real person?  Thank you.

    Hello

    You will need to contact support by calling/chat for this request.

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

    Kind regards

    Sheena

  • problems with IE7 in the use of tables and onLoad

    Thank you in advance for any help. I have a table that is used to store the names of. Files to load into another SWF. SWF video. When I call the "onLoad" method, it works in all browsers except IE7? See the example below:

    prod_a = new Array;
    prod_a [0] = 12; number of products in the table. Currently, this feature is not used...
    prod_a [1] = "product1.swf";
    prod_a [2] = "product2.swf";
    prod_a [3] = "product3.swf";
    prod_a [4] = "product4.swf";
    prod_a [5] = "product5.swf";

    onLoad = Function)
    {
    Description();
    moveScroller();
    loader_mc.loadMovie(prod_a[1]);
    }

    When the file opens, it loads the '2' slot flash file in the table in the "loader_mc" EXCEPT IT DO WORKS NOT IN IE 7? any ideas or help would be great! IE7 handles the different "onLoad"? I made a mistake?

    Thank you Sly one, but that's not the problem I currentl having a Java work around for this. I tried a few different solutions to the problem "click to activate". I found that none of them made a difference.

    I resorted to a solution of 'disorder' but effective. -items I've been hainvg problems with were dynamically loading the text and images. I had the problem by placing the images and the text which was to load 'onLoad', in the boxes as _mc objects. in this way the images were already there and didn't need to be loaded.

    The only two problems with this is
    (A) Firefox and Safari users (including other) screen "Refresh" the image loading. and
    (B) the size of the file was more than 35 KB.

    Thanks for the help everyone, the final is good enough for Government work...
    -DIG

Maybe you are looking for

  • Is there a firefox download that does not require 7zip to extract?

    For me, 7-zip is blocked by Group Policy (which I can't control) and I want to find a full exe which is not extracted using 7zip. Several posts already evoke here goes https://www.mozilla.org/firefox/all/ to get the full download, but at least the En

  • Questions AWDL - startup suspended ElCapitan and rMBP

    Hi all I have problems starting my rMBP 2013 end after turning it out this morning and now back! The start screen comes at the end of the State but crashes and goes no further. I booted in verbose mode and it seems the boot up to this point: I080211A

  • Downloads for Equium A60-157 HELP!

    Hello I got my A60 for a few months now and it has been fine. Today, if I closed the lid for a tea break - when I came back and put the cover up, the screen didn't reappear. All lights are still on - he always seemed to be 'on' but nothing happened a

  • my phone has sound but the screen is blank

    I made a phone call. I can hear people talk but may the screen is blank and I cannot complete the call. What should I do?

  • Length of the string, excluding the input character/string

    Long story short, I want to replicate the function of the length of the string , but do not include an input the number of characters in string. For example: The input string (search) is 'the My first string to test is "the big red dog." That would m