Ospf run with TE

i want to know do we get the tunnel update in ospf
shivlu

OSPF use type10 opaque area to carry tunnel information:
show ip ospf database opaque-area

Similar Messages

  • K8n neo2 running with 260 FSB ?

    Hi !
    Well, I have one question about the FSB and Multi settings.
    first, my sys:
    -K8N Neo2 Platinum
    -AMD64 3500+ winchester
    -OCZ 2x512 DDR (PC 3500 - 433Mhz) Ram
    -2x S-ATA HDD Hitachi 160GB @ Sata 3&4
    -550W PS
    So, with some tests, I can found the fastest CPU-freq @ 2600Mhz with 1,58V VCore - testing with Prime95.
    But I want the fastest clock for the rams, too.  The Ram works with FSB 217, DDR200-setting in BIOS. Multi 11x. very well at 217Mhz...
    first settings:
    FSB @ 237 / Multi @ 11x / HT @ 4x / Ram set to DDR166.
    So the effective CPU-clock is 2604Mhz, the ram is at 186 Mhz.
    The setting works fine... but with very poor ram-clock...
    (I had to set the ram to DDR166, because with DDR200-Setting the clock will be 237 which is too high and I can´t boot. )
    2nd setting:
    FSB @ 248 / Multi @10.5 / HT @4x / Ram set to DDR166.
    The setting works fine... The Mobo shows a ram-clock of 208Mhz. The Tool "Clock-Gen" shows a ram-clock of 200Mhz...(I dont´know which is right...?) But: The Ram-Clock can ba 217Mhz, I guess..?
    3rd setting:
    FSB @ 260 / Multi @10 / HT @3x / Ram set to DDR166.
    This setting crashes up while booting.... normally, I think, the CPU-clock will be 2600 (which will work), the RAM will divided down to 217 Mhz.
    Now my prob: the CPU runs with 2604 Mhz, the RAM runs with 217Mhz - but why can´t I set the FSB to 260 and Multi 10x ?? PS: the system ist still crashing, when I set the Multi to 10x and try FSB to 250Mhz... ?
    Does anyone know ??
    Many thanks !
    A.

    Just so you know, when you use dividers, your memory performance is only as good as the lowest setting. For example, I you have a system with ddr333 memory and a CPU with a 333mhz FSB your memory performance is as follows:
    Memory Peformance:
    133CPU x 133mem = 166CPU x 133mem
    CPU performance:
    133CPU x 133mem
    As opposed to:
    Memory Peformance:
    133CPU x 166mem CPU performance:
    133CPU x 166mem
    The Kicker:
    Memory Performance (first versus second):
    133CPU x 133mem 166CPU x 133mem CPU Performance (first versus second):
    133CPU x 133mem 166CPU x 133mem
    I neglected to try overall combined performance like 3dmark01/03/05 but I was on a time budget at the time and only concerned with running a 4:5 divider as opposed to a 4:4 divider which my results gave me no increase (but no decrease either).
    Therefore, you get no increase in memory performance when using dividers. I used sandra to verify this. I simply used my CPU and RAM in every different configuration I could think of and then ran it and recorded the results. Hopefully I remembered my results correctly.
    Yes, you will see a CPU increase with dividers but you will not see a memory increase.
    The Kicker Reiterated:
    CPU Performance:
    (133 CPU x 133 mem
    Personally I think you should be happy with an FSB of 248 because that means your memory frequency is 198.4mhz which means you nearly have ddr400. How much of an increase do you think you'll see with 260FSB (208mhz memory frequency (increase of 9.6 mhz))? Personally I think you should be happy with 248 with a 5:4 divider.
    ORRRRRRRR:
    try benchmarking with a 216FSB x 11mult x 4htt with DDR200 versus 248 x 10mult x 4 htt with DDR166 and see which is faster. You'll do better on the first with memory and better on CPU with the second but the inverse will be the inverse. Then I would do an overall benchmark like 3dmark03/05 and see which had the best overall effect (I'm guessing it will be a somewhat close call but I never tried that... hmmm... something to try now).

  • How to keep an application level object running with SunIDM?

    We are working on intergrate a gmail project with SunIDM. We need an application level object running with SunIDM so it will maintain a token generated from Gmail side. In anther servlet project, I had this object saved in the attribute of the ServletContext, then other session level servlet could share this attribute anytime. Is there a way to store attribute in Servlet Context and have it shared by different user session in SunIDM? I have been reading documents and searched this forum, haven't find any topics related how to maintain an application level object live. Hopefully that I can get some hint here.
    Thank you so much.

    Paul, Thank you so much for the further explaination. I don't think it will work since the token generated from gmail will expire every 24 hours.
    We are using the gdata library published from by gmail people, and I create a new UserService object and have it run in the application level. The UserService object will generate a token and renew it every 24 hours behind the scene. Here is how I implement it in my Servlet project:
    //to have a UserService object running at the application level:
    public class GmailUserService extends HttpServlet {
    public void init(ServletConfig config) throws ServletException{
    super.init();
    userService = new UserService(myApplication);
    config.getServletContext().setAttribute("gmailUserService", userService);
    //to access this UserService object from other servlet in each user session:
    UserService userService = (UserService)servletContext.getAttribute("gmailUserService");
    Gmail will trigger an error if we create a new UserService object for each user. They recommend to have all the user to share one UserService object. I am looking for similar approach in SunIDM.
    Thank you again, Paul, for trying to help.

  • Program will run with errors, but not at all in a .jar file

    First off, here is my program right now:
    import java.io.*;
    import java.util.*;
    import javax.swing.JOptionPane;
    public class prune
        public static void main(String args[])
            String steamid="",time="";
            BufferedReader infile = null;
            BufferedWriter outfile = null;
            FileReader fr = null;
            FileWriter wr = null;
            StringTokenizer strtk = null;
            String line = null;
         JOptionPane.showMessageDialog
          (null, "Vault.ini Pruner v2");
         String filepath = JOptionPane.showInputDialog("Enter the filepath to your vault.ini file.");
         String strdeletenumber = JOptionPane.showInputDialog("Enter the number that vault entries under will be deleted");
         int deletenumber = Integer.parseInt(strdeletenumber);
            try
                infile = new BufferedReader(new FileReader(filepath));
                outfile = new BufferedWriter(new FileWriter(filepath));
            catch(IOException ioe)
                JOptionPane.showMessageDialog
          (null, "Can't open vault.ini:" + ioe);
            try
                while((line=infile.readLine())!=null)
                    strtk = new StringTokenizer(line);
                    steamid = strtk.nextToken();
                    time = strtk.nextToken();
                    if(Integer.parseInt(time)>=deletenumber)
                        outfile.write(steamid);
                        outfile.write(" ");
                        outfile.write(time);
                        outfile.newLine();
            catch(IOException ioe)
                JOptionPane.showMessageDialog
          (null, "Error:" + ioe);
            try
                outfile.close();
                infile.close();
            catch(IOException ioe)
               JOptionPane.showMessageDialog
          (null, "Error:" + ioe);
                System.exit(0);
    }The program is supposed to open a vault.ini file and delete entries with a number lower than specified.
    Vault files are set up like this:
    STEAMID:X:XXXX 100000
    Right now if I run the program through command prompt it erases both the vault.ini and new vault.ini. I am also trying to put it in an executable jar file and when I do that I get a "Failed to load main class manifest attribute" error. Any ideas on what is causing this?

    I don't know what is happening. I put your exact code into a small build environment and used a build file for ant that I have and it works just fine. Manifest files are a total pain which is why I use a tool to generate it. I know that the last line has to be blank and that no line can be over a certain length.
    You've now spent several days avoiding ant and I got it running with ant in about 3 minutes. I'm really missing something.
    For reference, the build file is below should you change your mind. Put your prune.java in a new directory named "src" and save this file below as build.xml in the parent directory of "src". Run the program with java -jar lib/prune.jar
    <project name="jartest" default="main" basedir=".">
    <!-- location properties -->
        <property name="src.dir" location="src" />
        <property name="dest.classes.dir" location="classes" />
        <property name="dest.lib.dir" location="lib" />
    <!-- value properties -->
        <property name="dest.lib.name" value="prune.jar" />
        <property name="main.class" value="prune" />
    <!-- compile time value properties -->
        <property name="compile.debug" value="true" />
        <property name="compile.optimize" value="false" />
        <property name="compile.deprecation" value="true" />
        <property name="compile.source" value="1.4"/>
        <property name="compile.target" value="1.4"/>
    <!-- build -->
        <target name="main" depends="compile,jar" />
        <target name="compile">
            <mkdir dir="${dest.classes.dir}"/>
            <mkdir dir="${dest.lib.dir}"/>
            <javac srcdir="${src.dir}"
                         destdir="${dest.classes.dir}"
                         debug="${compile.debug}"
                         deprecation="${compile.deprecation}"
                         optimize="${compile.optimize}"
                         source="${compile.source}"
                         target="${compile.target}" >
            </javac>
        </target>
    <!-- clean -->
        <target name="clean">
            <delete dir="${dest.classes.dir}"/>
            <delete dir="${dest.lib.dir}"/>
        </target>
    <!-- jar -->
        <target name="jar" depends="compile">
            <jar destfile="${dest.lib.dir}/${dest.lib.name}"
                    basedir="${dest.classes.dir}">
                <manifest>
                    <attribute name="Built-By" value="${user.name}"/>
                    <attribute name="Main-Class" value="${main.class}" />
                </manifest>
            </jar>
        </target>
    </project>

  • Msi Big Bang Xpower II can only run with 3 memory modules?

    Hello there! I've just got my new system up and running. But it cant boot with 4 memory modules when there is a module in slot 7? I have a 4x8gb kit from corsair (CMP32GX3M4X1600C10), and a Msi Big Bang Xpower II..
    When i start it, it just shows me the debug code "67" which is "Late Cpu Initialization" according to the "User Guide".. It stays there, for about 15 seconds, then it shuts down, and does the same, over and over..
    Atm, i'm running with 3 modules, and there's no problems at all! I've testet ALL memory blocks, in another computer, and they run just fine..
    What should i do?

    Quote from: xmad on 25-September-12, 21:09:52
    Also, what cpu, bios version , memory type etc
    Make sure the mem mods are in the proper slots for tri channel operation.
    >>Posting Guide<<
    If everything comes up clean, update to the most recent bios. Only do this if your computer is stable in bios. IE You are only having crashes in windows etc.
    >>Use the MSI HQ Forum USB flasher<<
    http://www.msi.com/product/mb/Big-Bang-XPower-II.html#/?div=BIOS
    **Merged
    Core i7 3930K, V1.2 Bios, 32GB Corsair Dominator Quad channel 1600Mhz Kit.. The memory are installed as the manual says..

  • Not able to get the minimize maximized and close button and its running with full screen mode.

    Hi
    My Thunderbird is running with ubuntu OS and while using some shortcut key my thunderbird mailbox switched to full screen mode. now i am not able to resize it's view and also not able to see minimize, maximize and close buttons on top left corner.
    Please help me out.
    Thanks

    I'm also running Ubuntu. Not sure how you got there, but you can try a Control-Q to quit. Then restart it and hope in comes back normal.

  • Time Capsule only runs with 1,1Mbit up/down during data transfer, internet speed is ok, TC is used to extend an existing network

    Hello Everyone,
    I have a new 2TB Time Capsule running with a MacBook Air. I want to use the TC to access data (Aperture library, iTunes library, other Files) and to backup my MacBook Air via Time Machine. I set it up, integrated the TC in my Network (FritzBox) by choosing "extend existing network" and it works. BUT only with 1.1Mbit/second while writing or reading Data to/from it. Internet speed is very good, like it was before. While the 1.1Mbit/second seem to be ok with Aperture and iTunes (streaming music and movies) it is still painfully slow and I'm not realy happy with that
    I've read that:
    The 1.1Mbit problem is pretty common when Time Capsule is integrated and used to extend a network (bridge modus), it also looses all ethernet connectivity then (that woul explain why connecting it by ethernet didn't help during initial setup and data transfer)
    Is there a solution besides ditching the Fritzbox and using the TC to build the network? Because basicly I still need the Fritzbox for its DECT features.
    Thank you for any help in advance and have a nice day,
    Olli

    You have double hop wireless with this setup..
    You should bridge the TC.. that is router bridge not wireless bridge, and plug the TC into the Frizyboy by ethernet.
    Then you can setup the TC wireless to reinforce the fritzy..
    Same wireless name as SSID.
    Same security settings... really should be WPA2 AES or in TC personal.
    Same password..
    Just different wireless channel.
    Then you can use 5ghz on the TC if you are up close and personal.

  • HT4623 I have a Gen 4 Ipod Touch, it is still running with IOS 4. When i go to my settings and select General there is no Software Update button to choose from. How do i update my Ipod to the new IOS system?

    I have a Gen 4 Ipod Touch, it is still running with IOS 4. When i go to my settings and select <General> there is no <Software Update> button to choose from. How do i update my Ipod to the new IOS system?

    You have to hook it up to a computer and update it to ios 5 and then there will be a "software update" button.

  • How to use airport time capsule on a dell portable pc with windows 7 taking in consideration that Time machine doesn't run with Windows ?

    how to use airport time capsule on a dell portable pc with windows 7 taking in consideration that time machine doesn't run with Windows ?

    TM does not work like that.
    If you want files to use later.. do not use TM.
    Or do not use TM to the same location. Plug a USB drive into the computer and use that as the target for the permanent backup.
    Read some details of how TM works so you understand what it will do.
    http://pondini.org/TM/Works.html
    Use a clone or different software for a permanent backup.
    http://pondini.org/TM/Clones.html
    How to use TC
    http://pondini.org/TM/Time_Capsule.html
    This is helpful.. particularly Q3.
    Why you don't want to use TM.
    Q20 here. http://pondini.org/TM/FAQ.html

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • How can I change the sound of push notifications on an iPhone 4 running with iOS5?

    How can I change the sound of push notifications?
    In settings > sounds there are various options but not the a possibility to change the general sound (!!!) of push notifications.
    Example: How can I change for instance the sound of the push notification of for example the New York Times notifications.
    Thanks for the help!
    Product: iPhone 4 running with iOS5

    What you see - what is available for this is what you get.

  • Add does not run with sql server 2008

    Hi all,
    My add on in the development environment does not run with SQL SERVER 2008. It ran well with SQL Server 2005 and sap b1 2207 B.
    On executing the project file system throws an error "YOU ARE NOT CONNECTED TO THE COMPANY"
    we are trying this scenario on a test machine where SAP B1 2007B with temporary license for one month and SQL server 2008
    is installed.
    Help needed.
    Thanking you
    Pradnya

    Hi Use this
    Dim i as integer
    i=oCompany.Connect()
    if i<> 0 Then
    msgbox(ocompany.GetLastErrorDescription ())
    end if
    the you will get the error description also use try catch wherever necessary
    Alternatively you can use
    Dim SboGuiApi As SAPbouiCOM.SboGuiApi
    Dim sConnectionString As String
    Set SboGuiApi = New SAPbouiCOM.SboGuiApi
    sConnectionString = Command
    SboGuiApi.Connect sConnectionString
    Set SBO_Application = SboGuiApi.GetApplication()
    Set ocompany = New SAPbobsCOM.Company 'initialate DI company object
      ocompany = SBO_Application.Company.GetDICompany
    HTH,
    Atul

  • TS5376 I have a laptop that i am running with Windows Vista. A while ago, it stopped running iTunes and comes up with the error : Runtime Error: R6034 - An application has made an attempt to load the C runtime library incorrectly.

    I have an iMac as my home computer, upgraded to this about a year ago from a windows pc and love it.
    However...
    I have a HP Compaq laptop that i am running with Windows Vista, which I use when travelling. A while ago, I believe on an update, to either windows or itunes, it stopped running iTunes and comes up with the error : Runtime Error: R6034 - An application has made an attempt to load the C runtime library incorrectly.
    I have a reasonable amount of tunes stored on my laptop, and am unable to ascertain as to whether this fix for allowing itunes to work again will delete my music folder and lose all the tunes i have on my laptop already?
    The contents of my music folders on my laptop and iMac are not the same, as they are not synced!
    Any help please on this would be appreciated!
    Pete

    See Troubleshooting issues with iTunes for Windows updates. The second box covers the basic removal and repair steps. The rest is links to other useful resouces.
    tt2

  • I downloaded the new firefox and now I get an error stating it won't run with my version of Mac OS? What is the fix?

    I was prompted to upgrade to Firefox 4 - I have a 3.6 version. When I move it to my application folder and tried to run it, I get the error that it cannot run with my version of Mac OS. I'm not sure how to update my OS version or go back to an older version of Firefox.

    Firefox 4 requires at least OS X 10.5. You can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html
    Mozilla are working to prevent Mac users with non-compatible systems from getting the notification about Firefox 4, and also not displaying the "Download Firefox 4" button on http://www.mozilla.com

  • HT1925 After failed update of itunes yesterday, now will not run with error message "MSVCR80.dll can't be found, APSDaemon.exe not running".  Windows 7.

    After failed update of itunes yesterday, now will not run with error message "MSVCR80.dll not found" APSDaemon.exe will not run.  itunes will not now run.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

Maybe you are looking for