What is function of this command

hello,,,
3810#clear interface serial 0
what this command will do?
regards
Devang

Hi Devang,
clear interface serial command is used to reset the statistical information specific to a serial interface.
http://www.cisco.com/en/US/products/sw/iosswrel/ps1835/products_command_reference_chapter09186a00800874a1.html#wp1033729
HTH, please rate if it does.
-amit singh

Similar Messages

  • What to do with this command line??

    someone posted a link to some command line or something like that in response to my need to convert a Nero DVD Image file .nrg to .iso. or at least someway be able to read the files/export, whatever. Here is the link to the post, he/she linked to some code that I do not know what to do with, can anyone help me with this?? I know NOTHING about Terminal/
    http://discussions.apple.com/thread.jspa?threadID=2363709&tstart=0

    i'm incredibly thankful for you taking the time to look at this, however, i am not getting anywhere, i followed your directions and got nowhere, here is a copy and paste of my terminal log or whatever, i tried a couple different things
    cd DeskLast login: Mon Jan 4 20:46:58 on console
    toptrey-buechlers-imac:~ Kerose$ cd Desktop./nrg4iso file.nrg file.iso
    -bash: cd: Desktop./nrg4iso: No such file or directory
    trey-buechlers-imac:~ Kerose$
    trey-buechlers-imac:~ Kerose$
    trey-buechlers-imac:~ Kerose$ cd Desktop
    trey-buechlers-imac:Desktop Kerose$ ./nrg4iso file.nrg file.iso
    error: error reading source file (No such file or directory)
    trey-buechlers-imac:Desktop Kerose$ /.nrg4iso file.nrg file.iso
    -bash: /.nrg4iso: No such file or directory
    trey-buechlers-imac:Desktop Kerose$ /.nrg4iso file.nrg file.iso
    -bash: /.nrg4iso: No such file or directory
    trey-buechlers-imac:Desktop Kerose$ ./nrg4iso file.nrg file.iso
    error: error reading source file (No such file or directory)
    trey-buechlers-imac:Desktop Kerose$ "./nrg4iso file.nrg file.iso"
    -bash: ./nrg4iso file.nrg file.iso: No such file or directory
    trey-buechlers-imac:Desktop Kerose$

  • What is wring with this command?

    Hi,
    I am not able to create a DES key with the following command. What is wong?
    c:\ keytool -genkey -keystore c:\.keystore -keyalg DES
    I get the error as "signature algorithm not defined"
    thanx
    secprovider

    keytool is for working with certificates and keypairs only. DES is a shared-key cipher. keytool can't be used to generate DES keys.
    See here for more info:
    http://java.sun.com/j2se/1.4.1/docs/tooldocs/solaris/keytool.html
    Good luck!
    Grant

  • What is the default key command for the COMMAND key?I seem to have changed it somehow along the way and now when I push the command key it hides all windows or shows desk top I need to correct this as soon as possible-.any ideas?

    What is the default key command for THE COMMAND (apple) key? I seem to have changed it somehow along the way and now when I push the command key (only) it hides all open windows and shows the desk top and when I push it again it shows all windows again...I need to return to default A.S.A.P. just this one key...Any ideas? Thanks in advance...

    Go to
     > System Preferences > Keyboard
    Click on the 'Keyboard' tab and hit the 'modifier keys...' button. You can see and change the defaults there.
    As I'm not sure if all the labels are the same in Lion, he's a screenshot from Snow Leopard. It should be similar enough:

  • What's wrong with this function

    What's wrong with this Function(PL/SQL) in this formaula column definition in Reports 6i
    function currdateFormula return Date is
    curr_date date;
    begin
    select to_char(sysdate, 'DD-MM-YYYY') into curr_date from dual;
    return(curr_date);
    end;
    I get the following error in compiling
    REP-1401. 'currdateformula'.Fatal PL/SQL error occured. ORA-01843 not a valid month.
    The SQL select to_char(sysdate, 'DD-MM-YYYY') from dual; worked well in SQL Plus prompt.
    I got a clean compile when i use just sysdate in the function (see below).
    function currdateFormula return Date is
    curr_date date;
    begin
    select sysdate into curr_date from dual;
    return(curr_date);
    end;
    Appreciate your help
    Raja Lakshmi

    hello,
    what you are trying to do :
    fetch the current date and return it as the result of the formula-column.
    what you are actually doing :
    fetch the current date, convert it to text, assign this text to a date-variable which causes an implicit type-conversion.
    in your case you create a date-string with the format dd-mm-yyyy. the implicit conversion then tries to convert this string back to date using the NLS settings of your session. depending on your NLS_LANG and NLS_DATE_FORMAT this might work, if your session-date-format is dd-mm-yyyy which obviously it is NOT as you get the error.
    what you should do :
    select sysdate into curr_date from dual;
    this fetches the sysdate and stores it in your date-variable. there is no type conversion needed what so ever.
    regards,
    the oracle reports team

  • What would be the terminal command to reverse this?

    My boyfriend gave me his old computer and he used this command to disable Previous Recipients. I want it back, what can I do?
    defaults write com.apple.mail SuppressAddressHistory -bool true

    Use the following:
    defaults write com.apple.mail SuppressAddressHistory -bool false
    or:
    defaults delete com.apple.mail SuppressAddressHistory
    (82268)

  • What is this command script called missing kitty that initiated out of nowhere on my macbook pro?

    What is this command script called missing kitty that initiated out of nowhere on my macbook pro? It says it was created by a former Apple genius and it showed up 3 days after I had to have my macbook wiped clean and re-installed at the Genius bar due to a "software glitch" that locked up my firmware....

    https://discussions.apple.com/thread/2404816?start=0&tstart=0
    at the Apple Store called "Missing Kitty" that would allow you to install a script on the root level of the HD. After installing everything and making a user it would go in and delete the user so on the next restart the computer would start up a "brand new" and already have iLife installed.
    You can always call the genius bar for clarification
    Genius reservation http://www.apple.com/retail/geniusbar/

  • What is proper permission for this command?

    Hello,
    What is the proper permission for this command:
    SQL> CREATE OR REPLACE DIRECTORY EXT_TABLES AS 'C:\temp\';
    CREATE OR REPLACE DIRECTORY EXT_TABLES AS 'C:\temp\'
    ERROR in line 1:
    ORA-01031: insuficient privileges
    Thank you vey much indeed.
    Sincerely yours,
    André Luiz

    Dont' grant create any directory to your users. This is big security hole!
    You can read/write every file on the server with the file permissions of the Oracle user.
    You better grant explicitly only the necessary privileges to your user, as I demonstrated in your other thread
    Issue as user SYS
    create directory EXT_TABLES as 'c:\ext_tables';
    grant read,write on directory ext_tables to scott;
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Export/Import-SPSIte :- What is the max size limit that can be moved using this command??

    Export/Import-SPSIte :- What is the max size that can be moved using this command??

    I assume you ment Export-SPWeb not Export-SPSite command.
    There is no known limitations in file size, except the compression file size that is set to 24MB by default. If you exceed 24MB, the cmp file will be splitted into several files. You can change the default 24MB value up to 1024MB, using the -compressionsize
    parameter.

  • What's wrong in this function?

    What's wrong in this function?
    create or replace function user_info (p_id           in           number,
                                  p_key_name     in           varchar2)
                   return varchar2 is
    l_text           varchar2(200);
    l_return_value     varchar2(300);
    begin
    l_text := 'wwsec_api.person_info('||p_id||').'||p_key_name;
    execute immediate l_text into l_return_value;
    return l_return_value;
    end;

    if u first time creating . remove the word "or replace"
    if u already create it with the compilation error then use the word "as" instead of "is".

  • Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the

    Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the sleep mode ?  How do I check this out ?

    You can set times for your computer to turn on or wake from sleep in the Energy Saver system preference pane using the Schedule... button.

  • When I issue the 'Force group Settings' command what effect will this have on existing flows? Do I need to disable WCCP prior to issuing this command on the affected WAE's?

    Hi WAAS Experts,
    I have a query, when I issue the 'Force group Settings' command what effect will this have on existing flows? Do I need to disable WCCP prior to issuing this command on the affected WAE's?
    Thanks,
    Shankar K

    Hi Shankar,
    A change of classifier/policy on the WAE is not affecting the existing flows so you shouldn't need to disable WCCP if you want to force group settings there.
    Regards,
    Nicolas

  • What happend if we issue this command.

    what happend if we issue this command.
    ALTER SYSTEM ARCHIVE LOG CURRENT

    It would enforce archiving of the current redo log.

  • Pls. what does this command mean?

    sudo rm -rf /System/Library/Extensions/IOPlatformPluginFamily.kext
    Someone left a post on another site and claims this will stop the whine on the MacBook Pros.
    Okay, I got desperate, I pasted it on my terminal and rebooted as indicated and the whine is gone. I had the high pitch whine when running on battery only.
    If this is bad, how do I reverse it? Did it correct the problem or did this command mask the problem? If so, can someone let me know how to reverse it? Thx
    MBP 15" 2.0   Mac OS X (10.4.7)  

    Thanks for the responses.
    Yes, it was dumb to do that. Luckily, there are people out there that are not maliclious but he/she should of indicated that I should save the file first.
    Go figure, I find this same revelation else where including the 'save' requirement, after the fact.
    I did however recover the file that I deleted and the whine is back, thanks to Niel's suggestion. Nice program.
    Temperature Monitor was showing Core's at 72 C and now both at 54 after reinstalling the deleted file. The MBP was running very hot which bothered me although the whine did disappear but I was afraid of what this heat would do to its innerds if it continued.
    I've only had the MBP for 3 days and am torn if I should return for a refund and wait or live with the whine and use QuietMBP or Photobooth.
    Well, I'll play some more and decide by Friday.
    Cheers all.
    MBP 15" 2.0   Mac OS X (10.4.7)  

  • How to redirect standard output/error of a ucb function to matrixx command window

    Is there a way to redirect standard output/error of a ucb function to matrixx command window?
    I know that the recommended way is to use stdwrt or XmathDisplay commands. However, we have some
    libraries that already exists which uses printf calls and I would like to redirect their output
    to the matrixx command window.
    Thanks

    Hi,
    What you need to do is create a printf function that will print the information into a string, then you can use stdwrt to display it in Xmath.
    Then you tell the UCB linking process to compile and link with this version of printf.c
    I am including the printf.c that we used to test the function you needed.
    Hope this helps.
    Attachments:
    printf.c ‏1 KB

Maybe you are looking for

  • How to use HR_MAINTAIN_MASTERDATA to terminate an employee

    Greetings experts: I'm working on an inbound interface that, among other things, can terminate an employee.  I'm new to ABAP and so it was recommended to me early on to record PA40 for this action.  That seemed to be working great until they added a

  • Zen micro, space is

    Hi I have a little problem with my Zen micro. Today i would put some music on my Zen, but it woulden't, because it told me that there wasn't more space, and i knew there was. There was about 4 gb space left, and then i tried to change the setting, so

  • Wheres my style sheet gone ?

    I uploaded my site www.mob-jukeboxes.com and i uploaded the index and some files and then checked it and then uploaded the rest. My style sheet is not doing anything ? all the text is massive ? and the logos etc are missing ? I used a ftp surfer to u

  • Wireless file sharing with vista?

    I have a powerbook g4 running 10.3.9 and have been give a vista machine from work, now there are files I need to transfer between the 2 computers, my IT guy is mac stupid and blew me off, I am vista stupid, so you get my dilema, I have turned all the

  • Tab Navigator freezes

    Hi    I have a tab navigator wherein each tab displays a panel which has information. Each panel has a scrollbar so that the user can scroll through the information on each panel. The issue is when I add the tabs dynamically, and move between tabs, t