What is virtual in jvm

hi friends.
i have a basic doubt. why java runtime mechanism is said to be virtual machine. Virtual means imaginary. what is dummy in jvm.
by vinod

It is virtual, because it hides the differences between each platform.
When you develop a java program, you don't have to worry about whether it is run on an Intel processor or a Sparc processor, Windows or Unix.
The Java program, presents the java developer with a "virtual machine", as opposed to a specific platform and processor.
Ps. Virtual does not mean imaginary. In this case, it means a common interface to many platforms.
regards,
Owen

Similar Messages

  • What Version of Sun JVM has JDeveloper been qualified with?

    We have a bug that appears in Java 1.5.06.
    Code worked in 1.5.02.
    Issue is in the swing library event handling.
    What version of the JVM has JDeveloper been qualified with?

    Hello pjtobi,
    Thank you for the details of the error message you are receving when launching iTunes.  I recommend removing and reinstalling iTunes.  Follow the steps in the article below:
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • What is Virtual Key Figure ?

    Hello,
    I would like to know about Virtual Key Figure. What is Virtual Key Figure ? How to we created ? what is use of Virtual Key Figure?
    Thank you
    Anup G shah

    Hi,
    As every one mentioned that Virtual key figure are those KF's whose values are filled at run time.
    You can write customer exits to fill values of those Kf's in SAP Enhancement RSR00002.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/59069d90-0201-0010-fd81-d5e11994d8b5#search=%22SAP%20Customer%20Exit%20virtual%20key%20figure%22
    http://www.bwexpertonline.com/downloads/Nissen.doc
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ac/ef1f43daac9a448f0150a02e3a7aba/content.htm
    Please rewad if it helps.

  • How do I enable Java Virtual Machine (JVM)? I upgraded yesterday and somehow it became disabled.

    I upgraded to newest version yesterday and when I went to a government site today, it tells me I have no access until I enable Java Virtual Machine (JVM). How do I do this??? (I did access this site by using Internet Explorer - but I much prefer Firefox)

    If you updated from a Firefox version prior to Firefox 3.6, the version of Java that you have installed is not being recognized. Firefox 3.6 and later requires Java 1.6.0.10 or higher; you have Java 1.6.0.05
    <u>'''''Other Issues'''''</u>: ~~red:You have installed plug-ins with known security issues. You should update them immediately.~~
    <u>'''Update Java'''</u>: your ver. 1.6.0.~~red:05~~; current ver. 1.6.0.20 (<u>important security update 04-15-2010</u>)
    (~~red:Firefox 3.6 and above requires Java 1.6.0.10 or higher~~; see: http://support.mozilla.com/en-US/kb/Java-related+issues#Java_does_not_work_in_Firefox_3_6 )
    ''(Windows users: Do the manual update; very easy.)''
    ~~red:Check your version here~~: http://www.mozilla.com/en-US/plugincheck/
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed.
    <u>'''NOTE:'''</u> Java version 1.6.0.21 has been released. It is mainly an update for developers of Java applications and most users do not need to be concerned about downloading version 1.6.0.21. <u>'''''At this time'''''</u>, the update option in existing installations of Java 1.6.0.20 are not updating to version 1.6.0.21; <u>'''''at this time'''''</u>, it must be manually downloaded and installed. According to the Java release notes:
    ''"'''Bug Fixes'''''
    ''Java SE 6 Update 21 does not contain any additional fixes for security vulnerabilities to its previous release, Java SE 6 Update 20. Users who have Java SE 6 Update 20 have the latest security fixes and do not need to upgrade to this release to be current on security fixes."'' Source: http://java.sun.com/javase/6/webnotes/6u21.html

  • What is virtual limit of Java?

    I hadn't actually tested the memory limitations of the jvm before and I was taking the word of others (and I didn't have access to Sun boxes always either.) So I decided to test the limits today.
    Windows:
    -NT
    -1.0 gig memory limit (512 physical, 512 virtual)
    -Jdk build 1.3.1-b24
    Using only option "-Xmx" and a 'hello world' program I run into a limit at 1649m, 1648m works and 1649m doesn't.
    Solaris:
    -2.7
    -750m total memory (512m physical)
    -Jdk build 1.3.1-b24
    I run into a limit at 3957m, 3956m works.
    When I exceed the limit I get this message when the jvm is started.
    "Could not reserve enough space for object heap"
    I would like to confirm those numbers with others and see if the numbers vary with different OSes and jvm versions.
    So if you have any useful information to contribute please do.

    vickyk said
    I would like to clarify the difference between the following :
    1)Heap Memmory
    2)Stack Memory
    3)Actual Ram
    i had read in some sources that heap and stack are
    a part of the ram.Well that isn't true. In all modern OSes (precluding real time) stack and heap are part of the process space which is all mapped into virtual memory. When actually running all virtual memory is loaded into physical memory (ram.) But in any substantial application the heap is one of the most likely things to be swapped to the hard drive.
    And it helps to be clear which heap and stack you are talking about. When you run a JVM there are TWO different types of stack/heap. One is for the process and is supplied by the operating system to the executable. The second kind is provided by the JVM and is used by the running byte codes. The two types are not the same.
    In Mastering Java it has been mentioned how the heap and
    stack work.The heap does
    contain the references of the object and the instances
    are stored in stack.Huh? Parameter references and local references are on the stack. Class references (static or not) are on the heap with the rest of the object data. An 'instance' should be deemed to be the real object and that will always be on the heap, it will never be on the stack.
    Once I set the initial heap more than the actual total ram doesnot the OS give
    the excess asked from the
    hard disk or from some other form.If it doesnot give then
    how for the process you can set heap size more than
    the actual ram available?No.
    When you specify the maximum that is how much it might ask for, not how much it gets on start up. If you specify the minimum then that is asked for on start up.
    The analysis done with setting the maximum heap size
    gave the following results:
    Case 2:
    java -Xmx1674m Ora is the maximum results
    Case1:
    Oops here I am getting amzing results????
    java -Xmx8m Ora works
    java -Xmx1468 Ora gives Error
    java -Xmx12468 Ora works fineIn the second case you exceeded the internal maximum for the JVM. It will not let you go over that limit.
    Is specifying these parameters keep the range of the
    memory give to the JVM(process)?What is the default
    value given to the maximum Java heap Size.See the java docs for your particular jvm. For Sun 1.2/1.3 it is 64meg.
    Is the java heap the amount of memory requested by the java process (from the os)
    invoked.If the allocation exceed in that process does the Jvm tells you dont have
    more memory.If you exceed the maximum then java will produce an out of memory exception. Keep in mind the following:
    -The maximum is not exact. The out of memory exception can be produced when less than 64 meg is used. This is due to the way garbage collection works. The subject is complicated and if you want to know more then search this forum for topics about the garbage collector.
    -Keep in mind that the java heap is not the same as how much memory the JVM will consume. So even if the maximum is 64 meg you might use an OS tool which says it is using more. Because the OS tool tells you the total memory being used which includes the JVM code, the executable heap and stack and the jvm stack and heap.
    Usually I run the application without specifying the limit
    and I believe a bad code can let the entire system hog,but if the java heap
    range is given only the java process will get held up and the other processes
    can run.Please correct the analysisBottlenecks are not only caused by memory contention. You can write a java app that uses very little memory but totally consumes the CPU and this will tend to slow the box. There are other possible bottle necks.

  • What's in the JVM Process's Memory Space?

    Hello
    I'm noticing the following behavior on an NT system. On
    application startup, I see
    Total Heap 9 MB
    Used Heap 5.5 MB
    java.exe memory (from NT Task Manager) 36 MB
    After a "login" operation which loads a few more
    classes:
    Total Heap 12.5 MB
    Used Heap 8.2 MB
    java.exe memory (from NT Task Manager) 53 MB
    Heap memory leaks have been ruthlessly suppressed
    (thanks to OptimizeIt and careful programming). The
    behavior I do not understand is that the NT process
    (java.exe) increased in size by 17 MB when the Java
    heap increased by only 3 MB. The .jar file in which the
    application resides is less than 1 MB, so this 14 MB
    growth can not be attributed to new classes being
    loaded.
    Does anyone know what is going into the process
    memory space of java.exe? It tends to grow larger
    and larger.
    Should I even care? Do I want a large allocation of
    process memory for java.exe, or will that hamper
    performance of machines with less physical memory?
    Posts on related topics in this forum have sometimes
    advocated allocating a lot of memory to the JVM with
    -X options.
    Thanks

    Hello
    I am facing exactly the same problem on NT. However, on 2000 Server this problem doesn't seem to exist. Are you, by any chance, using JNI? We are extensively using JNI in our Servlets and found that there is definitely some momory leak there. We could not figure out any substantial leak at Java end. In NT's "Task Manager" java.exe is always listed first and very rarely the memory usage seems to come down. On 2000 Server the performance is far better.
    Please visit this link:
    http://forum.java.sun.com/thread.jsp?forum=33&thread=211330
    Regards
    Manish Bhatnagar

  • What would make a JVM memory size 1.9GB ?

    This is on Solaris 2.6, JDK 1.2.2_05a, JDK1.2.2_07, possibly JDK 1.3 (it crashed).
    WLS 5.1, SP8. With inline_instrs_jit=0.
    This is the [heap] segment shown by /usr/proc/bin/pmap. This is native heap, it is
    NOT the Java Heap.
    I know it could be the Type 2 db drivers - but I doubt it.
    With JDK1.3 we set -XX:MaxPermSize=128m - it crashes after an hour.
    One part of the application creates its own threads for some parallel processing.
    Is this a known
    problem with the JVMs?
    Any help is much appreciated.
    Mike Reiche

    What is the 'Break difference' that the debug JVM shows? Is that the Java Heap? Or
    is memory in the C Heap that is wasted by fragmentation?
    ============== C Heap Report ========================
    mmap space 300515328
    Committed space 95690752
    Allocated space 34049316
    Break difference 66060288
    Breakdown by type:
    ClassSpace 15252128
    JITCompiledStackMaps 5277188
    StackMap 1892672
    Dependency 1856760
    utf8_space 1854838
    untagged 1783520
    basicBlocksState 1664992
    utf8_table 1055903
    Class 811520
    JITPrestub 610480
    NearClass 531360
    CardObjectTable 386048
    JavaStack 257024
    CheckingDone 200367
    SummaryCardTable 193024
    name_loader_cache_entry 65976
    ScratchRecord 65548
    basic_block_t 50896
    IntfMethodTable 48960
    stringTableOverflowRecord 46480
    BitVectorElem 32768
    ObjectMap 30724
    ClassName 28407
    Clinit 18752
    Table_mem 18628
    LoaderConstraintsTableEntry 11668
    JITInlineByteCode 1928
    LoaderConstraintsTableLoaderEntry 520
    stateVecBuf 237
    =====================================================
    Total GC time: 2987981 ms
    - Mike
    "[email protected]" Mike wrote:
    >
    >
    Aslo - GC[1] are taking way long (Debug JVM) - I'm used to seeing them taking
    500
    ms with the regular JVM. With -ms32m -m256m - I wanted GC[1] to run often
    because
    that has helped with other memory problems in the past - it doesn't work
    so hot here.
    GC[1] in 5514 ms: (38Mb, 0% free) -> (38Mb, 69% free)
    GC[1] in 6300 ms: (38Mb, 0% free) -> (38Mb, 65% free)
    GC[1] in 7130 ms: (38Mb, 0% free) -> (38Mb, 64% free)
    GC[1] in 6158 ms: (38Mb, 2% free) -> (38Mb, 62% free)
    GC[1] in 6171 ms: (38Mb, 0% free) -> (38Mb, 65% free)
    GC[1] in 6885 ms: (38Mb, 0% free) -> (38Mb, 64% free)
    GC[1] in 7403 ms: (38Mb, 0% free) -> (38Mb, 61% free)
    GC[1] in 689101:25:49 PM PST {218} - Evaluation is: true
    GC[1] in 6545 ms: (38Mb, 1% free) -> (38Mb, 61% free)
    GC[1] in 7459 ms: (38Mb, 0% free) -> (38Mb, 62% free)
    GC[1] in 6861 ms: (38Mb, 2% free) -> (38Mb, 58% free)
    GC[1] in 6090 ms: (38Mb, 0% free) -> (38Mb, 56% free)
    GC[1] in 6413 ms: (38Mb, 0% free) -> (38Mb, 60% free)
    GC[1] in 8230 ms: (38Mb, 1% free) -> (38Mb, 58% free)
    GC[1] in 7649 ms: (38Mb, 0% free) -> (38Mb, 54% free)
    GC[1] in 7912 ms: (38Mb, 0% free) -> (38Mb, 55% free)
    GC[1] in 7696 ms: (38Mb, 1% free) -> (38Mb, 57% free)
    GC[1] in 6543 ms: (38Mb, 1% free) -> (38Mb, 60% free)
    GC[1] in 7036 ms: (38Mb, 1% free) -> (38Mb, 59% free)
    GC[1] in 7483 ms: (38Mb, 0% free) -> (38Mb, 56% free)
    GC[1] in 5132 ms: (38Mb, 1% free) -> (38Mb, 59% free)
    GC[1] in 8186 ms: (38Mb, 0% free) -> (38Mb, 53% free)
    GC[1] in 5691 ms: (38Mb, 0% free) -> (38Mb, 58% free)
    GC[1]01:35:49 PM PST {575} - Evaluation is: true
    GC[1] in 8176 ms: (38Mb, 0% free) -> (38Mb, 46% free)
    GC[1] in 8463 ms: (38Mb, 0% free) -> (38Mb, 47% free)
    GC[1] in 7342 ms: (38Mb, 0% free) -> (42Mb, 41% free)
    GC[1] in 6920 ms: (42Mb, 0% free) -> (49Mb, 41% free)
    GC[1] in 8610 ms: (49Mb, 1% free) -> (60Mb, 40% free)
    GC[1] in 9581 ms: (60Mb, 1% free) -> (60Mb, 50% free)
    GC[1] in 10514 ms: (60Mb, 0% free) -> (60Mb, 59% free)
    GC[1] in 9865 ms: (60Mb, 0% free) -> (60Mb, 60% free)
    GC[1] in 11323 ms: (60Mb, 0% free) -> (60Mb, 57% free)
    GC[1] in 18768 ms: (60Mb, 0% free) -> (60Mb, 60% free)
    GC[1] in 11147 ms: (60Mb, 0% free) -> (60Mb, 55% free)
    GC[1] in 7293 ms: (60Mb, 0% free) -> (60Mb, 42% free)
    GC[1] in 9372 ms: (60Mb, 0% free) -> (60Mb, 53% free)
    GC[1] in 8814 ms: (60Mb, 0% free) -> (60Mb, 55% free)
    GC[1] in 9695 ms: (60Mb, 1% free) -> (60Mb, 54% free)
    GC[1] in 7309 ms: (60Mb, 0% free) -> (60Mb, 53% free)
    GC[1] in 8713 ms: (60Mb, 0% free) -> (60Mb, 54% free)
    GC[1] in 11955 ms: (60Mb, 0% free) -> (60Mb, 55% free)
    GC[1] in 12685 ms: (60Mb, 1% free) -> (60Mb, 55% free)
    GC[1] in 18906 ms: (60Mb, 0% free) -> (60Mb, 58% free)
    GC[1] in 13333 ms: (60Mb, 0% free) -> (60Mb, 51% free)
    "[email protected]" <[email protected]> wrote:
    Rob -
    Thanks for your attention -
    We create lots of threads - up to five threads for each DB hit (i didn't
    design it).
    The multi-threading will be disabled/removed and tested later on today.
    Both 'top'
    and pstack show around 85 threads.
    I've read articles on the bea newsgroups about WL hanging on to threadreferences
    so that the threads could not be GC'ed, but it sounded more like a customer's
    impression
    of what might be going on than something from BEA engineering.
    Right now we are running with the 1.2.2_05a 'Debug' JVM with -verbose:gc
    -verbose:gc
    -verbose:gc
    JVMARGS=verbose_c_heap,inline_instrs_jit=0
    Unfortunately, some of the code being tested is now broken and not being
    excercised
    today. I will keep you posted.
    - Mike
    Rob Woollen <[email protected]> wrote:
    How many threads are you creating?
    Each thread uses some memory (stack etc.), but 1.9GB would be a lot of
    thread creation.
    -- Rob
    Mike Reiche wrote:
    This is on Solaris 2.6, JDK 1.2.2_05a, JDK1.2.2_07, possibly JDK 1.3
    (it
    crashed).
    WLS 5.1, SP8. With inline_instrs_jit=0.
    This is the [heap] segment shown by /usr/proc/bin/pmap. This is nativeheap, it is
    NOT the Java Heap.
    I know it could be the Type 2 db drivers - but I doubt it.
    With JDK1.3 we set -XX:MaxPermSize=128m - it crashes after an hour.
    One part of the application creates its own threads for some parallelprocessing.
    Is this a known
    problem with the JVMs?
    Any help is much appreciated.
    Mike Reiche--
    Coming Soon: Building J2EE Applications & BEA WebLogic Server
    by Michael Girdley, Rob Woollen, and Sandra Emerson
    http://learnweblogic.com

  • What is path to JVM?

    I'm trying to install a tool that requires that "the JAVA_HOME environment property is set to match the top level directory containing the JVM you want to use."
    The example they give for bash is
    JAVA_HOME=/whatever; export JAVA_HOME
    And I can run that command without errors. However, I can't figure out what the path should be. I found an old post saying it should be /Library/Java/Home, but when I tried to run the shell script to build the tool, it said JAVA_HOME wasn't set.
    I also tried /System/Library/Frameworks/JavaVM.framework and /System/Library/Frameworks/JavaVM.framework/JavaVM, but it still said JAVA_HOME was not found.
    I can't tell whether the path is wrong, the command I used to set JAVA_HOME didn't work, or something else is wrong. Does someone know the path is 10.6.2 for sure? That would really help me figure out where I'm going wrong.

    Sorry I don't know what the path should be, but is this tool run from Terminal or is it a GUI Mac app (i.e. launched by Finder)? Remember that setting a Terminal environment variable only affects programs started from that Terminal session, and setting a Terminal var will have no effect on a GUI app (even an app started from the command line with 'open', AFAIK). A script started from Terminal would read the Terminal vars, but if it's installing a GUI app it might be smart enough to look at the GUI environment.
    To read your Terminal envr vars, just type 'set' at the Terminal prompt. If you do this in a new Terminal session, check the list to be sure your original Java install didn't already set JAVA_HOME. If so, and your new tool is a GUI app, just copy the Terminal var to the GUI environment.
    To access your GUI envr vars see [Environment Variables|http://developer.apple.com/mac/library/documentation/MacOSX/Conceptua l/BPRuntimeConfig/Articles/EnvironmentVars.html] in the +Runtime Configuration Guidelines+ or take a look at [http://stackoverflow.com/questions/135688/setting-environment-variables-in-os- x].
    As to what the path should be, it's probably the directory your Java installer wants to use when it asks you if you want to install in the default location or not. I guess you could run the installer up to that point and then cancel after you copy that path. If all else fails, find the JVM(s) and try the parent directory.
    Btw, I'm not a Java programmer, only working from what little I know about OS X envr vars. So after you get JAVA_HOME set correctly, please don't keep the thread open to ask why the tool is making bad coffee, ok? We have some Java experts around here, but another Subject line would be the best way to get their attention.
    Hope that helps!
    \- Ray
    p.s.: This reply was in the editor when you posted an update, so the above isn't responsive to your recent progress. Sorry for that confusion. - R
    Message was edited by: RayNewbie

  • What are Virtual Chars & KFs

    Hi Friends,
    I am new to BW. I would like to know about Virtual Chars & key figures.
    Where can they be created ? How to create them? Whats the use of them?
    If anyone of you have any document which speaks about them , pls send it to
    [email protected]
    Thanks
    mv_d

    hi,
    A virtual characteristic / key figure can be used to derive values at
    query run time
    The virtual characteristic / key figure must be added to the cube as a
    characteristic or key figure but not filled in update rules or transfer
    rules
    Useful for determining values that are not known or determined until
    query runtime
    Cache not used – Could have performance impact
    Can be used in conjunction with variable userexit
    n The value selection made by the user for the variables can be used in
    the virtual characteristics and key figure exit.
    EXIT_SAPMRSRU_001 - BW: Definition of Virtual Characteristic
    ZXRSRTOP – Global Variable Definition Section
    ZXRSRU02 – Specify if infoobject should be read or populated during
    exit
    ZXRSRZZZ– Enhancement Coding (Update Logic)
    Transaction RSRT can be used to troubleshoot virtual characteristics
    For queries with virtual characteristics or key figures you are able to activate the use of the cache, which is deactivated by default.
    Also look at the following post for a typical scenario,
    How to implement Virtual Characteristics or Virtual key figures
    try out these links for similar issue..
    Virtual Characteristics & Virtual Keyfigures....Scenarios
    virtual chars and keyfigures
    Virtual Keyfigures and Characterisitics
    Virtual Characteristics...
    assign points if it helps....

  • What does virtual host and port mean in a system in ESB console

    Hi !
    When you click on a system in ESB console you can see and change 'cluster name' , 'Virtual host' and 'Port' .
    What does this mean ?
    As default the port is 8888 even though the installation uses port 80.
    If I change the port, I see no difference.
    Could someone please explain ?

    It is used to generate the endpoint urls in the wsdl's for the services you have deployed. It needs to be set to the esb server and port number where the services are installed. So if your esb installation uses port 80 you need to change 8888 to 80. Try the wsdl and look at the url of the endpoint.
    Kind Regards,
    Andre

  • What is technology behind jvm ?

    can anyone tell me what are all technologies used to create JVM
    means language etc.
    please tell me the meaning of these lines
    The Java programming language originated as part of a research project to develop advanced software for a wide variety of network devices and embedded systems. The goal was to develop a small, reliable, portable, distributed, real-time operating platform. When the project started, C++ was the language of choice. But over time the difficulties encountered with C++ grew to the point where the problems could best be addressed by creating an entirely new language platform.

    There are varying JVMs for the varying platforms and from varying vendors. Which one are you interested in? And, once you know that, ask them.
    If you are asking what the "standard" is, there isn't one, and it doesn't matter, regardless of what you may think of that answer.

  • Why can't install Java Virtual Machine (JVM)  in my PC?

    I can't install JVM in my PC with win2000 OS. After download the JVM from java.sun.com,the microsoft OS installor dispaly it's status is the the last step --install JVM in PC.But there is no any response from the installor hourly.The task manager of OS showed the installor was running at all times.what matter?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Yes,I logined in my PC as administrator.Today,I find there is the program Java 2 Runtime Environment,SE v1.4.2_04 in Control Panel.If it means JRE installed already,but why the installation window keep on running status all the time,and can't be closed? Is it a bug?

  • What is Virtual Guitarist2

    Virtual Guitarist2 is "Steinbergs" AU Plugin and I use also Steinbergs Virtual Basist.
    The question I asked, how to record what the plugin plays is valid also with Virtual Basist.

    Hi Lidu,
    Just record the midi as you play it. VG responds to most 3 and 4 note chords, so with just playing chords righthanded you should be able to record the MIDI on the VG track, and play that back.
    regards, Erik.

  • What is virtual template interface

    hi all
    Please explain me what is vitual template interface and when should used.how can someone used it to bind physical intfaces under virtual templte int?

    Hi,
    A virtual template interface is used to provide the configuration for dynamically created Virtual-Access interfaces. It is created by users and can be saved in nonvolatile RAM (NVRAM).
    Once the virtual template interface is created, it can be configured in the same way as a serial interface.
    To create a virtual template interface that can be configured and applied dynamically in creating virtual access interfaces, use the interface virtual-template command in global configuration mode.
    Virtual template interfaces can be created and applied by various applications such as Virtual Profiles, virtual private dialup networks (VPDN), PPP over ATM, PPP over Frame Relay, protocol translation, and Multichassis Multilink PPP (MMP).
    Following are FR and ATM examples:
    interface Serial1/0.1 point-to-point
    bandwidth 128
    frame-relay interface-dlci 51 ppp Virtual-Template1
    class FRTS
    interface ATM1/0.52 point-to-point
    ip vrf forwarding customer
    pvc 101/52
    abr 167 167
    oam-pvc manage
    encapsulation aal5ciscoppp virtual-Template 1
    http://www.cisco.com/en/US/products/sw/iosswrel/ps1831/products_command_reference_chapter09186a0080080d36.html#wp1017915
    HTH, please do rate all helpful replies,
    Mohammed Mahmoud.

  • What is VIRTUAL ETHERNET??

    Dear All,
    what is the concept of virtual ethernet??
    pls advise me.
    Regards,
    Ankita
    Edited by: Ankita Kapoor on Jan 24, 2008 1:15 PM

    Hi Ankita,
    Virtual ethernet device is an ethernet-like device which can be used inside a VE. Unlike venet network device, veth device has a MAC address. Due to this, it can be used in configurations, when veth is bridged to ethX or other device and VE user fully sets up his networking himself, including IPs, gateways etc.
    Virtual ethernet device consist of two ethernet devices - one in VE0 and another one in VE. These devices are connected to each other, so if a packet goes to one device it will come out from the other device.
    Regards,
    Rohit

Maybe you are looking for

  • ID3 tags in MP3 files

    Hello everybody! How can I read the ID3 tags from an MP3 file? Not just the title, artist and album. All of that. I know the last 128 bytes are reserved for ID3 tags in version 1. But in version 2 (and over) have a lot of other tags, like the album p

  • Some settings not saved in Presets file

    I'd like to setup my fme environment with preset Xml files (and with some dirty scripting hacks, we make the app load them automatically). Unfortunately, not all the Device settings are saved. There is a tuner specific Settings tab whose settings are

  • Switchover of a manual standby database (no data guard)

    Hi all, I have a standby database . I am using Oracle Standard Edition 10.2.0.4 / 10.2.0.5 so I have build a manual standby . I am able to do a failover in the case something goes wrong; I was thinking if it is possible to do a manual switchover . an

  • Parsing xml for complex type using sax

    I have an xsd of below type: <xs:complexType name="itemInfo">     <xs:sequence>       <xs:element name="displayLineNumber" type="xs:string" minOccurs="0"/>       <xs:element name="lineNumber" type="xs:integer" minOccurs="0"/>       <xs:element name="

  • Collection Manager Red Hat VMware

    Hello, My client is asking if the Red Hat Server that Collection Manager  is installed for the SCE platform supports VMware. I have read the installation guide of the collection manager but does not state anything. Is it ok to install in VMware?