XCP-ng
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. WayneSherman
    3. Best
    W
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 11
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Mouse stops responding in XO console (XCP-ng 8.3, Win11 24H2)

      I have been investigating a network hardware offload issue with the Realtek RTL8125BG 2.5G on the same XCP-ng host computer. This separate issue was resolved by shutting off TX checksum offload on the physical interface.

      It made me think that maybe the mouse problem is caused by something similar on the other NIC. The second NIC in the computer is Realtek R8111EPV (1G)(using Linux r8169 driver) which is the one I have been using when I noticed the mouse issue. So I ran a capture test on the XCP-ng host:

      tcpdump -i eth1 -v -nn | grep incorrect
      

      and found bad packet checksums on some of the received packets coming in to the Windows VM:

      x.x.x.x.443 > [windows.vm.ip].49715: Flags [P.], cksum 0xc656 (incorrect -> 0xb854), seq 1:2433, ack 216, win 2052, length 2432
      x.x.x.x.443 > [windows.vm.ip].49717: Flags [P.], cksum 0x2e6c (incorrect -> 0xcff2), seq 1:2921, ack 218, win 501, length 2920
      x.x.x.x.443 > [windows.vm.ip].49720: Flags [.], cksum 0x1b11 (incorrect -> 0xb99c), seq 1:2921, ack 213, win 16384, length 2920
      ...
      

      Running this on the XCP-ng host stopped the checksum errors:

      ethtool -K eth1 gro off  # testing only, not persistent
      

      Making this setting persistent:

      xe pif-param-set uuid=my_eth1_PIF_UUID other-config:ethtool-gro="off"
      

      After making this change I will monitor the VM to see if the mouse problem returns.

      posted in XCP-ng
      W
      WayneSherman
    • RE: Citrix or XCP-ng drivers for Windows Server 2022

      (In regards to uninstalling XenServer / Citrix Tools)

      I tested uninstalling XenServer tools v9.4.0 on Windows and it seems to uninstall cleanly. (the xcp-ng docs mention there have been problems uninstalling everything cleanly in the past)

      Also since XenServer tools v9.3.1 there is a new purge function:

      uninstall.exe purge - (9.3.1 and later) Resets the VM to a clean state as it was before any part of the XenServer VM Tools were installed.

      Full uninstall of all XenServer VM Tools components
      https://docs.xenserver.com/en-us/citrix-hypervisor/vms/windows/vm-tools.html#full-uninstall-of-all-xenserver-vm-tools-components

      What does the purge option remove?
      https://docs.xenserver.com/en-us/citrix-hypervisor/vms/windows/vm-tools.html#what-does-the-purge-option-remove

      posted in XCP-ng
      W
      WayneSherman
    • RE: Mouse stops responding in XO console (XCP-ng 8.3, Win11 24H2)

      @WayneSherman said in Mouse stops responding in XO console (XCP-ng 8.3, Win11 24H2):

      It made me think that maybe the mouse problem is caused by something similar on the other NIC. The second NIC in the computer is Realtek R8111EPV (1G)(using Linux r8169 driver) which is the one I have been using when I noticed the mouse issue. So I ran a capture test ... and found bad packet checksums on some of the received packets coming in to the Windows VM

      I cannot confirm that the network errors were related to the issue of the mouse freezing. After running all weekend (on eth1, with gro offloading set to on, and network packet errors present) I have not been able to replicate the mouse freezing.

      posted in XCP-ng
      W
      WayneSherman
    • Issues with XCP-ng Windows PV Tools 9.0.9000.0 Testsign Pre-release

      @dinhngtu

      Testing on a newly installed and updated Windows 7 Pro 24H2

      Issue #1: attempting to install the certificate gives an error

      1. open a command prompt as administrator
      2. cd to the testsign directory
      3. run this command:
        powershell -ExecutionPolicy Bypass .\install.ps1
      4. After hitting enter for confirmation, I get these messages

      ac18b652-7403-4f5b-954e-3ab19043cd5a-image.png

      Line 21 fails with Unauthorized Access Exception:

      Import-Certificate -FilePath $PSScriptRoot\XCP-ng_Test_Signer.crt -CertStoreLocation Cert:\LocalMachine\TrustedPublisher
      
      posted in XCP-ng
      W
      WayneSherman