WRT54G2 with Subnetted Virtual Machines

I am unable to access the internet from guest virtual machines on a /25 subnet, although local lan connectivity seems to work fine, and local lan access to the internet works fine. My setup: WRT54G2 in Gateway mode 10.100.200.1/25 Host machine 10.100.200.4/25 Guests (Virtual machines) on the host: : 10.100.200.128 -254 (Host and Guests are Ubuntu 10.11 under KVM, w/virt-manager "routed networking" Static route on WRT54G2: 10.100.200.128/25 gw: 10.100.200.4 Local LAN connectivity is complete. For example, ssh from the lan to any guest works, as does ssh from any guest to any lan machine. Local lan internet access is complete, includiing the vm Host. Ping and traceroute from the WRT54G2 to lan machines, Host, and guests is successful. Failure: Guest machines cannot reach the internet. They can reach the router. Traceroute to an internet address from a guest machine returns responses from the WRT54G2, followed by time-outs. Ping from a guest machine to the internet fails. I have experimented with both /25 and /24 subnet masks on the WRT54G2 lan port without apparent effect. At this point I am rapidly running out of ideas. The WRT54G2 seems to refuse to pass guest machine packets out to the internet. I have found suggestions on various web fora that NAT difficulties can arise when using subnets with the WRT54G2, but I've been unable to track down details. Any suggestions would be deeply appreciated. Thanks in advance...

Linksys routers are consumer routers. They don't really support more complex network configurations.
In your case, the problem is that the WRT only does NAT for it's own LAN IP subnet.
If a computer inside your LAN (e.g. 10.100.200.4/25) sends something into the internet, the WRT will do source IP NAT from 10.10.200.4 to its public IP address. This happens for all source IP addresses inside 10.100.200.4/25 but not for any other IP address.
This means, if your VM with 10.100.200.200/25 would send something, it is routed through the host machine to the WRT, i.e. the WRT receives a packet from 10.100.200.200 to an internet IP address for forwarding. As the source IP address is not in 10.100.200.0/25 it won't go through NAT, i.e. the WRT will route the packet with unmodified source IP address 10.100.200.200 into the internet where it will be quickly discarded.
That's a known limitation of Linksys routers and they don't have any configuration options to configure the NAT function in detail (like you would find in a Cisco IOS router). The Linksys always does NAT for the LAN IP subnet but for nothing else.
You only have two options:
1. use NAT on the host machine, i.e. the host machine does NAT between the VMs and the host network. Of course this way, the VMs are not accessible from the outside.
2. use ethernet bridging instead of routing between VMs and host network. This would create a single ethernet network and you only need a single LAN IP subnet for VMs and the normal network.

Similar Messages

  • Having trouble with creation of a cloud service with multiple virtual machines using java sdk.

    I am creating a cloud service on azure with 2 virtual machines using java sdk API. Service created successfully.
    My input endpoint details are as follows.
    INPUT ENDPOINTS
    Head : 191.238.144.47:2400
    Head : 191.238.144.47:22
    Node0 : 191.238.144.47:43211
    For Head instance port 2400 is for HTTPS and port 22 is for SSH and for Node0 instance port 43211 is for SSH.
    But I am having problem with doing a ssh on Head instance. Sometimes it works sometimes doesn't. Same problem with HTTPS also.
    I have some application running over there but when i try to access it thru browser sometimes it works but most of the time doesn't. When I restart the instances from azure portal, its works after
    that(not always but most of the time). 
    Now I am confused what is going on there. I am creating cloud service and virtual machines using java sdk and setting input endpoints also. After creation of all instances i restart every instance programmatically .
    I am not sure whether restart is required or not. It must be something to do with input endpoints only but not able to get the right thing i guess. When i do the same thing thru azure portal(creation of cloud service with virtual machines and setting up input
    end points) everything works fine but not achieving the result when implementing it by java sdk API. Please help me.

    HI Nithin,
    Thanks for your reply. I am setting the endpoints after creating my instances using update call. Here's the code snippet.
    AzureService aServ = new AzureService(session);
     if(aServ.checkNameAvailability(clusterName)) {
               aServ.createHostedService(clusterName, "dbX cluster");         
             // Creating head instance
             aServ.createHead(clusterName, imgName, headType, userName, pswd);  
            // Setting end points for head node
             String name = "ssh";
             int port = 22;
             aServ.updateVMInputEndpoint(clusterName, "Head", name, port);
             // Restarting head instance
             aServ.restartVM(clusterName, "Head");
           String roleName = "Node";
           String tmpRoleName = "";
           for(int i=0; i<noi; i++) {
                      port = 43210+(i+1);
                      tmpRoleName = roleName + i;
                   // Creating node instance
                    aServ.createVM(clusterName, tmpRoleName, imgName, nodeType, userName, pswd);
                  // Setting end points for node instance
                   aServ.updateVMInputEndpoint(clusterName, tmpRoleName, name, port);
                  // Restarting node instance
                 aServ.restartVM(clusterName, tmpRoleName);
          // Method to update the input endpoint details 
          public void updateVMInputEndpoint(String clusterName, String vmName, String name, int port)
            throws Exception {
                    VirtualMachineGetResponse resp = computeManagementClient.getVirtualMachinesOperations().
                                                            get(clusterName, clusterName, vmName);
                    VirtualMachineUpdateParameters updateParameters = new VirtualMachineUpdateParameters();
                    //get the configuration list
                    ArrayList<ConfigurationSet> configlist = resp.getConfigurationSets();
                    //get inputendpoint list and update it
                    ArrayList<InputEndpoint> endpointlist = configlist.get(0).getInputEndpoints();
                    InputEndpoint inputEndpoint = new InputEndpoint();
                    inputEndpoint.setEnableDirectServerReturn(false);
                    inputEndpoint.setPort(port);
                    inputEndpoint.setLocalPort(port);
                    inputEndpoint.setName(name);
                    inputEndpoint.setProtocol(InputEndpointTransportProtocol.TCP);
                    endpointlist.add(inputEndpoint);
                    // Open port for https on head node
                    if(vmName.equals("Head")) {
                            inputEndpoint = new InputEndpoint();
                            inputEndpoint.setEnableDirectServerReturn(false);
                            inputEndpoint.setPort(2400);
                            inputEndpoint.setLocalPort(2400);
                            inputEndpoint.setName("https");
                            inputEndpoint.setProtocol(InputEndpointTransportProtocol.TCP);
                            endpointlist.add(inputEndpoint);
                    updateParameters.setConfigurationSets(configlist);
                    //required for update
                    OSVirtualHardDisk osVirtualHardDisk = resp.getOSVirtualHardDisk();
                    updateParameters.setOSVirtualHardDisk(osVirtualHardDisk);
                    updateParameters.setRoleName(resp.getRoleName());
                    OperationResponse updtResp = computeManagementClient.getVirtualMachinesOperations().update(clusterName, clusterName, resp.getRoleName(), updateParameters);
    And every time i am creating a new cloud service along with head and node instances. Region is "South Central US".
    I am setting ProvisionGuestAgent field to true at instance creation time. Thank you.

  • Problem with the virtual  machine

    Hello.
    i've encountered problem with the virtual  machine. Java instance is reseting sometimes. I found message in dev_server0 there is:
    <b>
    [Thr  6] JLaunchIExitJava: exit hook is called (rc = 666)
    [Thr  6] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    </b>
    in dev_jcontorol:
    <b>
    [Thr  1] Thu Mar 13 15:58:39 2008
    [Thr  1] JStartupICreateProcess: fork process (pid 16077)
    [Thr  1] JControlICheckProcessList: process server0 started (PID:16077)
    </b>
    where i can looking the reason of this?
    regards,
    Denis

    Hi Denis,
    This looks like a memory issue, similar problems have been posted on this forum before.
    Change the following params.
    -XX:PermSize=2048m
    -XX:MaxPermSize=2048m
    Also,
    See SAP note 709140 and the referenced notes.
    Regards,
    Siddhesh

  • Is Time Machine dealing with Fusion virtual machines differently now?

    I have discovered and others have noted that TM backs up Fusion VMs as a single file. For me, this has been roughly 32GB a pop, chewing up my 500GB TM target volume breathtakingly quickly. Suddenly, however, changes within the VM are requiring only about 7.6GB per TM back-up, roughly one-quarter of the previous amount. Does anyone know what's going on here? I downloaded the usual monthly bushel of Windows automatic updates (security, stability, enhancements, etc.) yesterday for my Vista Ultimate guest VM; could these somehow have made the TM process for a Fusion VM more efficient? This seems too good to be true!

    All --
    The most knowlegeable VMware employee at the Fusion booth at Macworld (two other VMware employees there did not know) told me definitively that Fusion virtual machines are no longer being backed up by Time Machine.
    On December 23rd, in another thread, Kimo said (see also Peggy Lynn's posts, above):
    "At this link you'll find the Fusion 1.1 release notes http://www.vmware.com/support/fusion/doc/releasenotes_fusion.html
    "Fusion 1.1 was the upgrade that Vmware provided at the end of november.
    As you can see they don't mention any issue with Time Machine.
    But searching around I've found the Fusion 1.1. RC1 release notes at this link
    http://www.vmware.com/beta/fusion/releasenotes_fusion.html
    "In this document you can find this section:
    "-Leopard's Time Machine feature causes VMware Fusion 1.1 RC1 to hang.
    In Mac OS X 10.5 (Leopard), the Time Machine feature interferes with the Virtual Machines directory, causing VMware Fusion to hang when you launch it.
    Workaround: Configure Time Machine to exclude the Virtual Machines folder.
    This problem is planned to be fixed for the upcoming VMware Fusion 1.1 GA release. Virtual machines will be excluded from Time Machine backups...
    "...and they did it!
    "They should announce it, in the right way, with the final 1.1. release notes. I can confirm, now, that my first 2 backups (of my vmware files) were done before the fusion 1.1 upgrade.
    The day I've installed the upgrade backups have been stopped.
    "I'm not glad for this, It should be a decision of mine..."
    I completely agree with Kimo. I have reviewed the 1.1 GA release notes, again, and can find no mention of Time Machine. Someone new to Fusion who trialed or purchased Fusion 1.1 GA would not be able to tell from a read of the Release Notes that her/his VM was excluded from TM backup. VMware indicated to me that they made this move, in cooperation with Apple, because the problem outlined above would occur if TM ran when a Fusion VM was active.
    I have been waiting for Dave Nanian to e-v-e-n-t-u-a-l-l-y update SuperDuper! to an exalted state of Leopard compatibility and, frankly, have in the interim been doing less frequent clone backups with CCC. As a consequence, I have been less protected (with respect to my data in the Vista VM) than I thought I was.
    Let me state the obvious: because, for many of us, the data in our VMs is precious, it is irresponsible for VMware to make a unilateral and fundamental change in a backup modality that is, after all, part of OSX, without giving the user a choice (the bug doesn't manifest itself if the VM isn't active; I just shut mine down to do periodic TM backups without mishap) and (ii) proactive notification of registered users -- they have the email addresses! That Apple was apparently a part of this is quite disappointing as well.
    More of the obvious: if you are a Fusion user, you should -- for sure -- rely on a backup approach other than TM to protect your VM data.
    Regards.

  • Firefox 3.6 doesn't work with VMWare Virtual Machine Console Plug-in but IE does. Previous versions of FF worked fine. Will this be fixed in a new FF release?

    When I try to open the Virtual Machine console I get the error:
    Cannot access virtual machine console. The request timed out.
    I had no problem with this until Firefox did an upgrade to 3.6 and now it doesn't work and I have to use IE to open the console.
    I can see lots of other people have this same problem so am wondering when it will be fixed.

    Look at this blog post for some work arounds for the windows version.
    http://planetvm.net/blog/?p=1316

  • Error with Java Virtual Machine Laucher

    Hi, I'm getting the follwowing error with I try to lauch universal installer.
    Fatal exception occured. Program will exit.
    Does anyone have any idea what's going on? I have java ee 5 sdk installed on my machine.

    Hello Guys!
    I have a problem here and i cant find the solution!
    somebody can help me?
    In the installation, after run the runInstaller show
    this message:
    Initializing Java Virtual Machine from
    /tmp/OraInstall2008-04-27_0733-08PM/jre/1.4.2/bin/java
    . Please wait...
    [oracle@localhost ~]$ Oracle Universal Installer,
    Version 10.2.0.1.0 Production
    Copyright (C) 1999, 2005, Oracle. All rights
    reserved.
    Exception java.lang.UnsatisfieldLinkError:
    /tmp/OraInstall2008-04-27_0733-08PM/jre/1.4.2/lib/i386
    /libawt.so: libXp.so.6: cannot open shared object
    file: No such file or directory occurred..
    java.lang.UnsatisfieldLinkError:
    /tmp/OraInstall2008-04-27_0733-08PM/jre/1.4.2/lib/i386
    /libawt.so: libXp.so.6: cannot open shared object
    file: No such file or directory<snip>
    So I went to MetaLink and did a search on the "libXp.so.6: cannot open shared object" found in your error message. The very first hit returned was note 308755.1, titled "OUI Reports The Error: Exception java.lang.UnsatisfiedLinkError: /tmp/OraInstall*/jre/1.4.2/lib/i386/libawt.so: libXp.So.6: Cannot Open Shared Object File"
    The terms of MetaLink usage prevent me from quoting from the note, but you would be advised to go read it for yourself. Suffice it to say you are missing some rpms. The specific ones missing are not listed in the above referenced not, but it will point you in the right direction.

  • Error when converting VMware virtual machine to Azure with new Virtual Machine Converter 2.0

    Hello
    I'm trying to convert a VMWare virtual machine to Azure with the new Microsoft Virtual Machine Manager 2.0
    The process stops when the disk conversion start. Error log below.
    Thanks for any advice.
    Regards
    Toon
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    This conversion will proceed off-line.
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    The uninstallation of tools is not supported in off-line machine conversion scenarios.
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    NOT preparing source virtual machine, this conversion is being treated as off-line.
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    Downloading VMware virtual disks from source virtual machine
    04/18/2014 14:53:04 +02:00  [9]  VERBOSE:
    System.Net.WebException: The remote server returned an error: (404) Not Found.
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.ExportLease.GetFiles(IDownloadAdapter adapter, String host, DirectoryInfo dirInfo, TaskContext taskContext)
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.VirtualMachine.DownloadFiles(IDownloadAdapter downloadAdapter, String toPath, TaskContext context)
       at Microsoft.Accelerators.Mvmc.Engine.ServiceLayer.Internal.MachineConversionService.ConvertToDrives(IMachineConversionRequest machineConversionRequest, IPostProgress& provisionHyperVPhase, IVirtualMachine& sourceVM, TaskContext taskContext)
    04/18/2014 14:53:04 +02:00  [9]  VERBOSE:
    Downloading device (/vm-3213/VirtualLsiLogicController0:0) disk-0.vmdk
    04/18/2014 14:53:04 +02:00  [9]  EXCEPTION:
    System.Net.WebException: The remote server returned an error: (404) Not Found.
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.ExportLease.GetFiles(IDownloadAdapter adapter, String host, DirectoryInfo dirInfo, TaskContext taskContext)
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.VirtualMachine.DownloadFiles(IDownloadAdapter downloadAdapter, String toPath, TaskContext context)
       at Microsoft.Accelerators.Mvmc.Engine.ServiceLayer.Internal.MachineConversionService.ConvertToDrives(IMachineConversionRequest machineConversionRequest, IPostProgress& provisionHyperVPhase, IVirtualMachine& sourceVM, TaskContext taskContext)
       at Microsoft.Accelerators.Mvmc.Engine.ServiceLayer.Internal.MachineConversionService.<>c__DisplayClass3.<ConvertToDrivesAsync>b__2()
       at System.Threading.Tasks.Task`1.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    04/18/2014 14:53:04 +02:00  [9]  Exception caught : System.Net.WebException: The remote server returned an error: (404) Not Found.
       at Microsoft.Accelerators.Mvmc.Gui.Model.ConversionModel.ConvertGuestMachine()
       at Microsoft.Accelerators.Mvmc.Gui.ViewModels.Machine.MachineCompletionViewModel.OnWorkerDoWork()
    04/18/2014 14:53:04 +02:00  [1]  Background task is complete.
    04/18/2014 14:53:04 +02:00  [1]  Conversion error message is displayed.
    04/18/2014 14:53:04 +02:00  [1]  Value of 'ErrorMessage' = 'The remote server returned an error: (404) Not Found.'
    04/18/2014 14:53:06 +02:00  [1]  Pressing Finish on the 'Completion' page.
    04/18/2014 14:53:06 +02:00  [1]  UI wizard is closing.
    04/18/2014 14:53:06 +02:00  [1]  Message box displays : 'Are you sure you want to exit? Any running jobs will be cancelled and the wizard will close.'.
    04/18/2014 14:53:09 +02:00  [1]  Cancel confirmation prompt was canceled by user.

    Hi,
    Have you found any solution?
    Thanks 
    Alessandro

  • Why my application can't can run with ojvm virtual machine

    in my application ,i select the ojvm virtual machine in run configuration,but only the following returned:
    1.Successful compilation: 0 errors, 0 warnings.
    2.Process exited.
    Debugger connection to debuggee process has been lost.
    Debugger disconnected from local process.
    when i change ojvm to server or anthing else ,there is not that problem any more.
    why?

    I have had this problem for months with no resolution from Oracle. Another similar machine works fine with OJVM. Go figure. Doesn't seem to be something Oracle is interested in resolving, but appears to be occurring on a variety of systems.

  • Safari problem with Java Virtual Machine

    I have a brand new MacBook Pro. I tried to play an online game that requires Java Virtual Machine. And of course I use Safari since it's the default browser. However, the game keeps asking me to download Java Virtual Machine. I tried to update and also I tried to use Google Chrome, but still it didn't work. Can someone please help.

    HI and Welcome to Apple Discussions...
    According to this site, http://www.java.com/en/download/manual.jsp
    you need the most recent version of Safari running which is 4.0.5 and have Java enabled. Go to the Safari Menu Bar click Safari/Preferences then select the Security update. Where you see Web content, select the top 3 buttons.
    To see which version of Safari you are running from the Safari Menu Bar click Safari/About Safari.
    If your software is not up to date, click the Apple Menu (top left in your screen) then click: Software Updates.
    Please click My Settings on the right side of this window and tell us which Mac OS X you are running. Makes it much easier for us to help trouble shoot for you. Thanks!
    Carolyn

  • JVM crash with HotSpot Virtual Machine Error, Internal Error

    I got following error after hours' running of weblogic:
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4349254E560E43505000F4
    # Problematic Thread: prio=1 tid=0x808e1d8 nid=0x29db runnable
    my sever environment
    OS: Redhat6.2(Kernel 2.2.14-5.0 on an i686)
    JDK: java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    WLS: weblogic6.1 sp2
    could you help me? very urgent. thanks.

    it works well now . thanks
    "Bernie Wong" <[email protected]> wrote:
    Try this. I was helping a friend who had the same error id/internal error
    on
    WLS 6.1 SP2, 1.3.1_01 on W2K. He was consistently getting the Error ID:
    4349254E560E43505000F4 five minutes into testing his appl.
    Set -XX:MaxPermSize=128m.
    The problem disappeared.
    Please let me know if that helped you.
    "shang zhengjun" <[email protected]> wrote in message
    news:3cfdab48$[email protected]..
    I got following error after hours' running of weblogic:
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4349254E560E43505000F4
    # Problematic Thread: prio=1 tid=0x808e1d8 nid=0x29db runnable
    my sever environment
    OS: Redhat6.2(Kernel 2.2.14-5.0 on an i686)
    JDK: java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    WLS: weblogic6.1 sp2
    could you help me? very urgent. thanks.

  • Stuck with HotSpot Virtual Machine Error, Internal Error in struts

    Hi i use to get this the following error message in my page ,while i am using struts and cann't understand why this error is raised can any body help me in this regard,as i have check nearly all the other possibilities of error.
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_01-b06 mixed mode)
    # Error ID: 52454C4F4341544F520E43505001E7
    # Problematic Thread: prio=5 tid=0x035dd210 nid=0x7dc runnable
    Heap at VM Abort:
    Heap
    def new generation total 1728K, used 464K [0x10010000, 0x101e0000, 0x104f0000)
    eden space 1600K, 21% used [0x10010000, 0x10064218, 0x101a0000)
    from space 128K, 99% used [0x101c0000, 0x101dfff8, 0x101e0000)
    to space 128K, 0% used [0x101a0000, 0x101a0000, 0x101c0000)
    tenured generation total 41916K, used 40307K [0x104f0000, 0x12ddf000, 0x14010000)
    the space 41916K, 96% used [0x104f0000, 0x12c4ceb8, 0x12c4d000, 0x12ddf000)
    compacting perm gen total 38656K, used 35140K [0x14010000, 0x165d0000, 0x18010000)
    the space 38656K, 90% used [0x14010000, 0x16261230, 0x16261400, 0x165d0000)

    I have ealso tried to increase my pages buffer size to 1000K but still getting the same error

  • Problem with java virtual machine

    hi i tried to install football manager 2007 nad it started a different installer that were using java virtual machine.i have the latest java virtual machine installed to my computer.after it loads the java virtual machine and the window closes , nothing happens.my computer continues work normally but the installation doesn't continue.! hope that someone can help me.

    Hi
    I'm having the same problem.
    I run the .exe file, and the installation hangs. I've tried running the .jar file instead, and get a JVM not found error.
    Hope someone can help. Thanks.

  • SQL Azure with Azure Virtual Machine inside Virtual Network - How to connect

    Hi Team,
    I have one typical scenario where there is one Windows Application I wan to run from my Windows Azure Virtual Machine which is inside Azure Virtual Network (which has its DNS and ADFS and etc..)
    Because its Virtual Network, We can't access internet within that network, apparently Virtual Machine can't access SQL Azure. So, How would we resolve this scenario.
    Application is running great from my local system so, its accessing SQL Azure Database from my system. So, Application or SQL Azure or connection or such areas has no issue.
    Regards, Brijesh Shah

    Hi Brij,
    Thanks for your reply.
    To add a DNS server in an Azure Virtual network, you can refer to the link below:
    http://msdn.microsoft.com/en-us/library/azure/dn275925.aspx
    To obtain a public Azure-provided DNS server IP addresss, you can run "ipconfig/all" in another Azure VM which is not a virtual network which has DNS server defined. After you add a DNS server in the virtual network that VM belongs to, please restart
    the VM to update the change.
    However, since you mentioned that you are using a customed domain, I am not quite sure if any other configuration should be done for your domain.
    Best regards,
    Susie

  • Link remoteapp with azure virtual machine

    I am running remoteapps. How do i connect the applications to retrieve databse from aa Azure virtual machine?
    Please help!

    Hi,
    To allow applications, that you publish through Azure Remote App, to be able to connect to backend servers running in Azure IaaS, the Azure RemoteApp vnet and the Azure IaaS vnet need to be connected. The following guide might be helpful here:
    How to link Azure RemoteApp to an existing VNET
    Kind regards,
    Freek Berson
    The Microsoft Platform
    Twitter
    Linked-in
    Wortell company website

  • Mint 17 with 2 virtual machines losing network connectivity

    Ethernet
    

    For one, I am the only person in our 5 person IT group that likes to use Linux. I am still learning though. I have been using Linux at home for only about a year. So please bear with me, as I'm possibly about to give too much info.
    The computer is used for our night dispatcher to watch the security cameras. The security software we use is Geovision and on the dispatchers end it is DM Multiview. We have two servers that have the Geovision software, for two different locations. SO in order to view the two different servers, we have to have two machines with multiview. Also Geovision apparently does not like linux and it does not work in Wine either.
    The computer only has 4 gigs of ram in it so i thought i would solve this by using a linux host and two virtual xp machines. (i know i shouldn't be using xp but i dont have a lot of choice)...
    This topic first appeared in the Spiceworks Community

Maybe you are looking for

  • Safari 5.1.1 does not start anymore, keep crashing

    Safari 5.1.1 does not start anymore, keep crashing Process:         Safari [748] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         5.1.1 (6534.51.22) Build Info:      WebBrowser-7534512

  • Need documentation for XI Scenarios

    Hi All, This is Revathi, I am learning XI. It would be great if anybody could send the documentation(Screen shots, navigation) for the following scenarios to [email protected] 1. FILE TO FILE 2. FILE TO JDBC. 3. HTTP TO JDBC. 4. HTTP TO SAP-R/3 5. FI

  • Camera save function not working correctly

    When taking pictures my camera is intermittently saving the photos off center.  I take the picture and when I look at the saved product everything has shifted to the right.  Any ideas why this is happening and more importantly how to fix it?

  • Back button disapears when resource bundle is used

    I created a header containing a OutputText. The value of the OutputText is defined by a ResourceBundle. Now, when I start the application, the back-button appears to be under the OutputText, even if the value defined in the ResourceBundle is a really

  • (wanted) Pop ups open in a new tab

    I'm having trouble with Safari (5.0.4), when I click on a link such as the choose a date link when booking a hotel/flight or using my banks website and the little pop up should appear that allows you to choose a date then disappears once you've done