How to see IP Address(DHCP) of Guest from CLI

Dear Experts
How to find out the IP address (DHCP assigned) of a guest image from the ovm server cli while the guest is already started. Here I am working on 'Weblogic Server Virtual Edition' image and do not get a login through console. Please help.
Rgds

You can follow this steps:
1) check MAC address
2) check in DHCP server logs what IP is set to MAC address listed in 1st point
Hope this help,
Dominik

Similar Messages

  • How to see mac address in IPS 4240 ???

    Hi all,
    How to see mac-address of inline-vlan-pair ?  and how to see mac-address of management interface in IPS ?
    Regards,
    Kiran

    Hello Kiran,
    The inline-vlan-pair itself is tied to a particular interface. So you're really asking for the MAC address of the interface associated with the inline-vlan-pair.
    The MAC address of sensing ports will be added to a "show interfaces" via CSCse84414. You can currently view the MAC address of sensing interfaces by doing an "ifconfig -a" from the service account.
    Thank you,
    Blayne Dreier
    Cisco TAC IDS Team
    **Please check out our Podcast**
    TAC Security Show: http://www.cisco.com/go/tacsecuritypodcast

  • How to see 'Salary amount transfered to bank from - 'S_AHR_61015609'

    How to see 'Salary amount transfered to bank from - 'S_AHR_61015609' report.
    S_AHR_61015609 is not showing amount

    Hi,
    I advice you to create a Z report
    1.) Use IT0009 record for the selection period for each employee with /559 , check for pmt mode as 'T'
         Generete Bank wise employee list and a summary list
    2.) Also check payment list for /557 records from RT
    Mean while your Z program gets ready
    1.) Download the WT reporter amount for /559 for bank pmt and /557 for cash payment
         with the employee details in one excel file
    2.) From table PA0009 download the Employees Bank details in another excel file
        ( here you can use Adhoc query)
    3.)  Take a Vlookup and add the abnk details in excel file 1 , check for the totals properly
    Regards
    Hemant V. Mahale

  • How to see the  GUI of the guest os ?

    Hello all,
    I have installed the oracle linux 5 as the guest OS using the PVM template.
    I can access the the guest console using the vm manager / vncviewer, but its just the console.
    1]What should i do, if i want the GUI (x server). (In /etc/inittab, its 5.) ?
    TIA,
    JJ

    The PVM guest templates that are provided by Oracle do not have the full X system installed, so even though inittab is set to 5, the GUI will not start. You would need to install the GNOME Desktop group before the GUI will work.
    However, once you do have it installed, or if you do a manual installation of OEL5 from a DVD, the VNC viewer will show you the GUI.

  • How to see all Address fields between Address Book and Contacts?

    Hello,
    I rely on my Apple Address Book on my iMac to manage a lot of information for work and personal purposes. Is there a way to configure the iPhone to display more of the fields that are available in the desktop Mac version of the Address Book? Specifically, the Related Names fields?
    Thank you
    Dan

    I would post in the Snow Leopard Mail & Address Book forum:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard#/?tag Set=1007

  • How to see the BOM or the comsumption From one PRO. order

    hi,friends,
    i want to see what kind of the material and what quantity of material from one production order, how to do by TO?  if these informations can be known, the warehouse should do the delivery conveiently.if you know how to do,would you please tell me ?
    tks and best regards!

    Hi MG,
    What do you want exactly?
    Generally, when a PrdOrd is released a TR will be generated. You can see this in LB10 - and processing this TR from LB10 a TO will be created and warehouse workers can move the goods to production area.
    You can check the content of this TR by clicking on it in LB10 or you can use LB03+TR no. as well.
    If your production order release doesn't trigger a TR but you use LP10 to create TR for pick part.
    You can also disply your PrdOrd in CO03 and choose menu > Goto > WM pick list. Or you can also use
    the 'Components' icon.
    If you want to get information of consumption concerning a particular PrdOrd please use MB51 (you can use the PrdOrd field as filter criteria within the report) or CO03 (> menu > Goto > Documented goods movements).
    Please clarify your question.
    BR
    Csaba

  • How to see when ipod was last synced from the pc

    I think my iPod is either lost/stolen and the only way to find out for sure is to see when my iPod was last synced on my computer. how do you find out the time that this happened?

    Welcome to the discussions,
    every time you sync a backup is created. You can find the list of stored backups in iTunes/Settings/Devices. Hover over the name of the device and you'll see the serial number of the device and right next to the backup the date it took place.
    But you can't find out if your ipod has been synced on another computer using your PC.
    Message was edited by: Ingo2711

  • How to see my code drawing a line from one point to another

    hi, im wondering if you could help me.
    i am working on my project which is to visualise travelling salesman heuristics.
    i have managed to make my first heuristic work, but my problem is that when i clicked the run button on my GUI,
    the output is already a complete tour with all the edges already drawn, but what i want is to see how it solves or draw the lines from one vertex to another just by clickin the run button once.
    would be great if you could advice me of what method or technique i need to use to see my application solving the tour or drawing the edges.
    below is my cofe for drawing the edges from one point to another
      void drawLineNNh(Graphics g){
             Graphics2D g2 = (Graphics2D) g;
             g2.setColor(Color.blue);
             int i = 0;
             if (P == null) return;
             else
                 for(i=0; i<P.getSize(); i++)
                 Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    below is my code for calling the above method to draw edges, actionlistererun.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();

    I AM USING SWING.
    HERE IS MY CODE, HOPEFULLY ENOUGH TO UNDERSTAND THE PROBLEM.
    class Plot extends Panel{
         public static int num;
         NNheuristic nnH;
         Closest_insertion CI;
         Points P;
         public static boolean useNNh= false;
         boolean useCI=false;
         boolean triangleDrawn = false;
         boolean CIupdate;
         void drawpoints (Graphics g)
             Graphics2D g2 = (Graphics2D) g;
             Graphics2D g3 = (Graphics2D) g;
             int i=1;
             g2.setColor(Color.red);
                    if (P==null) return;
                    else
                    while (i<P.getSize())
                         Ellipse2D.Double vertices = new Ellipse2D.Double(P.x_coor,P.y_coor[i],10,10);
    g2.fill(vertices);
    i++;
    g3.setColor(Color.MAGENTA);
    Ellipse2D.Double initial = new Ellipse2D.Double(P.x_coor[0],P.y_coor[0],10,10);
    g3.fill(initial);
    System.out.println("No. of Vertices: " + P.getSize());
    for(int k = 0; k < P.getSize(); k++)
    System.out.println("x coordinate: " + P.x_coor[k] + ", " + "y coordinate :" + P.y_coor[k] );
    // System.out.println("next:"+ P.x_coor[k+1]);
    triangleDrawn = false;
    void drawLineNNh(Graphics g){
    Graphics2D g2 = (Graphics2D) g;
    g2.setColor(Color.blue);
    int i = 0;
    if (P == null) return;
    else
    for(i=0; i<P.getSize(); i++)
    Line2D.Double drawLine = new Line2D.Double(P.x_coor[nnH.seen[i]]+5, P.y_coor[nnH.seen[i]]+5, P.x_coor[nnH.seen[i+1]]+5,P.y_coor[nnH.seen[i+1]]+5);
    Line2D.Double drawLastEdge = new Line2D.Double(P.x_coor[nnH.seen[P.getSize()-1]]+5, P.y_coor[nnH.seen[P.getSize()-1]]+5, P.x_coor[0]+5,P.y_coor[0]+5);
    g2.drawString( " Total Distance : " + nnH.totalDistance , 10, 300);
    g2.draw(drawLine);
    g2.draw(drawLastEdge);
    public void set (Points p)
    P=p;
    useNNh = false;
    useCI = false;
    public void setNNh(Points p)
    nnH = new NNheuristic(p);
    useNNh = true;
    void frame (Graphics g)
    g.setColor(Color.white);
              g.fillRect(0,0,size().width,size().height);
              g.setColor(Color.green);
              g.drawRect(0,0,579,280);
    public void paint(Graphics g)
    frame(g);
    drawpoints(g);
    if(useNNh)
    drawLineNNh(g);
    else if(useCI)
    if(!CIupdate)
    drawTriCI(g);
    else
    drawRestCI(g);
    // drawLineNNh(g);
    public void clear ()
         // remove the points and the graph.
    P=null;
    triangleDrawn = false;
    code of my GUIpublic class TSP extends JFrame{
    JButton run;
    ...................codes...........
    TSP() {
    ...............................codes...........
    run = new JButton ("Run");
    run.setPreferredSize(new Dimension(113,30));
    run.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("Run")) {
    if (chooseHeur.getSelectedItem()=="Nearest-Neighbour")
    System.out.println(chooseHeur.getSelectedItem());
    //points = new Points(toInt((String)chooseNum.getSelectedItem()));
    //PlotArea.set(points);
    PlotArea.setNNh(points);
    PlotArea.repaint();
    else if(chooseHeur.getSelectedItem()=="Closest-Insertion")
    PlotArea.setC_I(points);
    PlotArea.repaint();
    pane2.add(run);

  • How to change Ip address of Wireless network from telnet

    Dear all
    Please detail guide me change IP address of WLC and AP using telnet? What is fist change WLC or AP ?
    Thanks

    It would be better to understand what is the current IP address and vlan and what you are trying to change to. You can always telnet and ssh to the WLC and change the WLC IP address, but the IP address for the APs can be changed from the WLC GUI or CLI if the AP's are static. If the AP's are getting their IP address from dhcp, then you don't really have to do anything, just reboot the AP for the ap to get a new address. The reboot can be done from the WLC GUI or CLI or just be shutting down the PoE port or disconnecting the power injector from the unit if your using power injectors.
    Sent from Cisco Technical Support iPhone App

  • HT201493 how can see my messages on my iphone from my pc

    i need to know if i can read my iphone messages from my pc?

    You can delete the photos from the iPhone directly after import (http://support.apple.com/kb/HT4083)- iPhoto on your Mac or Aperture will prompt you, if you want to delete the imported photos from the device. If you missed that opportunity, delete the photos on the iPhone by opening the Camera Roll and tapping the trash icon.
    See this Help text:  http://iphonphone.blogspot.nl/2014/01/how-to-delete-photos-from-iphone.html

  • How to access the apps server inside guest  from host.

    my setup is
    windows 7 - host
    OEL 5 - virtualbox guest
    i have it setup with bridged networking with static IP 192.168.1.91.
    my virtualbox guest is running oracle ebs 12. i can access from firefox inside the guest the url http://xt12:8000
    i can ping the guest ip from host .
    however when i try to open the url(http://192.168.1.91:8000) from Internet Explorer browser inside the host it do not open.
    appreciate any suggestion.
    thanks in advance.
    -Kart

    user12046749 wrote:
    however when i try to open the url(http://192.168.1.91:8000) from Internet Explorer browser inside the host it do not open.
    appreciate any suggestion.Check iptables inside the guest: a default Oracle Linux install has the firewall enabled, which will block inbound connections.

  • How to see deleted records in delta extraction from view

    Hi folks,
    i am currently reflecting about delta extraction from a view:
    The view contains a date field (change date) which is used to identify new or changed records.
    So the delta extraction of new and changed records works without problems.
    But what is happening with records that are deleted in the source system?
    My current understanding is that deleted records will not be shown in the view. Therefore the deletion is not visible in the extraction.
    - Is there a workaround for this problem?
    - How is deletion of records normaly handled in generic extractors? 
    - Is it impossible to extract a deletion when using views?
    any suggestions and help will be appretiated...
    bye

    Hello Florian,
    Generally records will not be deleted (until if you physically delete it from table) but will have a status deleted.
    So it doesn't matter whether you use view or tables the deleted records will be extracted through the view to update the BW data targets.
    Thanks
    Chandran

  • How i see my current service using select query

    Hi,
    How i see my current net service name from query .
    Regards
    Faheem

    Hi,
    Do you talking about the database service configured at listener?
    I'm not sure if the DBA_SERVICES or V$SERVICES can be used to get this information.
    oracle@icaro:~> lsnrctl services
    LSNRCTL for Linux: Version 10.1.0.2.0 - Production on 10-MAR-2008 09:55:57
    Copyright (c) 1991, 2004, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=icaro)(PORT=1521)))
    Services Summary...
    Service "DB01" has 2 instance(s).
      Instance "DB01", status UNKNOWN, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:8 refused:0
             LOCAL SERVER
      Instance "DB01", status READY, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:2331 refused:0 state:ready
             LOCAL SERVER
    The command completed successfully
    oracle@icaro:~> sqlplus / as sysdba
    SQL*Plus: Release 10.1.0.2.0 - Production on Mon Mar 10 09:56:02 2008
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select service_id,name from dba_services;
    SERVICE_ID NAME
             1 SYS$BACKGROUND
             2 SYS$USERS
    3 DB01Cheers
    Legatti

  • Address Book, how do I see what account the contact is from?

    In OS X Lion, Address Book, I have many names listed 2,3,4 times. Would like to know what account they belong to (Exchange, On my Mac, Mobile Me etc.) so that I can delete the extra ones.
    In address book, can I select the contact and see what account the contact belongs to?
    Hope so.
    Thx Much

    Thx Matt,
    Not sure you know what I want to do. I have numerous contacts in my address book, some are from my exchange account, some stored on my Mac and some from Mobile Me.
    If I see the same name three times is there a way I kno what account each of the duplicate name belongs to.
    Hope I said this right.
    Thx Much
    ..holding down the "option" key when I click on to a contact does not seem to do anything.

  • How can I see the address bar which is buried above the top of the page?

    I cannot see the address bar that is buried at the top of the page. My cursor will not go up above the top and will not force the page to come down. I have tried un-installing and re-installing, no help. I cannot use the site because I cannot get to the address bar.
    What can I do?

    you've probably also hit the F11 key before - it just toggles between full-screen and normal mode.

Maybe you are looking for

  • When signing in the drop down menu lists lots of e-mail addresses how can I delete the ones no longer using this computer

    when I sign in to anything, face book, or a game etc and I click the box for inserting my e-mail address a drop down menu appears I cannot seem to delete any of the addresses on this list is there a way I can delete addresses from this list thus maki

  • Program To Find Exact FASTEST MTU? ?

    I need to constantly change my MTU Size to get fast internet, or else it goes slow in about a day. I need a good program to find the exact mtu witch would be fast for pretty much all sites. I've went all the way down to 1100, and by a day, I have to

  • Automated process to crop away certain pixels

    How can I automate the process to crop away certain pixels from the edges of a batch of pictures of different dimension? Example: Picture 1 : 400 x 600px Picture 2 : 360 x 480px Picture 3 : 600 x 800px I want to crop away 5px from each edge of each p

  • Can Not Calibrate the display. The factory profile for the display...

    I have an apple cinema display 20" and a mac powerbook g4 (1.25 GHx PowerPC g4, 1.25 GB DDR SDRAM) with os 10.4.9. All of my software is up to is date. I used to be able to calibrate my colorsync profiles. My computer's hard drive recently failed and

  • Considering Apple TV, but...

    When I saw it on display at the Apple store, all the content being shown on the demo set up seemed fuzzy and low resolution. You would think they'd show the best possible samples, and if that's the best I can expect, I'll skip it. My DVD player gives