Citrix Xen Server on UCS-B with Palo Adapter

All
I am attempting to install Citrix Xen server (tried 5.6 and 5.5) on a UCS-B series blade running the Palo Adapter.
During the install we are asked to install drivers.
I used "kmod-enic-xen-1.1.1j-0.x86_64.rpm" from virtual media and it stated no drivers were found.
I tried extrating this to .gz and further to .cpio with the same results.
Any input or direction would be appreciated.
Thanks in advance
DaveO

Cisco B-series support on Xenserver 5.6 can be found at -
http://hcl.vmd.citrix.com/BrowsableServerList.aspx?__EVENTTARGET=&__EVENTARGUMENT=&__VIEWSTATE=%2FwEPDwUJNDE0NjI1MDY5ZBgCBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WBQUiY3RsMDAkY3BoTGVmdCRQcm9kdWN0TmFtZVNlbGVjdGlvbgUlY3RsMDAkY3BoTGVmdCRQcm9kdWN0RWRpdGlvblNlbGVjdGlvbgUlY3RsMDAkY3BoTGVmdCRQcm9kdWN0VmVyc2lvblNlbGVjdGlvbgUjY3RsMDAkY3BoTGVmdCRTZXJ2ZXJWZW5kb3JTZWxlY3Rpb24FIWN0bDAwJGNwaExlZnQkRm9ybUZhY3RvclNlbGVjdGlvbgUdY3RsMDAkY3BoTWFpbiRTZXJ2ZXJMaW5rVGFibGUPPCsACgEIAgFktUOxaVqPQ0ve39xhDIByQCg50Ys%3D&ctl00%24cphLeft%24ProductEditionSelection=&ctl00%24cphLeft%24ProductVersionSelection=5.6.0&ctl00%24cphLeft%24ProductVersionSelection=5.5.0&ctl00%24cphLeft%24ServerVendorSelection=Cisco+Systems&ctl00%24cphLeft%24FormFactorSelection=&ctl00%24cphLeft%24ctl00=Apply+Filters
Palo or CIsco VIC is not currently supported on XenServer 5.6, we are currently engaged with Citrix to add that support, timelines unknown at this point.
Qlogic CNA (M71KR-Q) and EMulex CNA (M71KR-E) both work fine with XS 5.6

Similar Messages

  • Star Office 9 on Windows Server 2008 64Bit with Citrix Xen App 5.0

    Good day,
    I have Star Office 9 already installed on my private PC and now want to install it also on Terminal Sever with OS Windows 2008 64 Bit and Citrix Xen App 5.0 . Is there anybody who has experience with such an installation, can inform me if it works and maybe what I have to consider on installation ??
    Thanks for your help
    rgds
    A.Reinhardt

    Here's what I have been doing to get OpenOffice.org working
    on our Citrix Farm using a Win2K/Win2K3 mixed-mode domain.
    the same applies to StarOffice.
    These were the goals:
    - Give any user who wants/has to work with an Office Suite
    access to OpenOffice.org by simply putting him into a
    group.
    - The installation must work in a way the user does not have
    to interact (read: I do not want to allow his interaction
    because he is definitely going to make the wrong choices)
    The painful way to the goal (as far as I got now):
    Note 1: While most files are included here, some are missing
    (like 100kb registry settings) but can be requested
    from the author.
    Note 2: Some of the scripting is ugly and may be useless.
    It has evolved quite a bit since I started it, so
    it's kinda messy. Nevertheless it works quite well
    here, so I wouldn't want to touch it...
    OVERVIEW
    This solution consists of the following parts:
    - modified setup file (optional)
    - responsefiles f�r base and workstation (=user) installation
    - installation script
    - domain logon (sub)script
    I modified the setup file (setup.inf) to stop the installer from giving me things
    I don't want. I have tried numerous ways to do this with StarBasic but failed.
    I tried the forums, I had contact with Sun developers - it simply wouldn't work
    the way it was supposed to.
    The installation script is simple. It's just there to make life a little easier
    for the sorry guy who has to install a new machine. I tried to use a packager
    to do the base installation and it horribly barfed, but then again that was in
    the days before 1.1.x. It works like this so I left it untouched.
    The major part is the domain logon script. There, we check if the user has access
    to OpenOffice.org, check for the presence of various files and try to build his
    environment as needed, taking various quirks and problems into account.
    The logon script needs a connection to a share on a fileserver/SAN/NAS. For us,
    it's still a fileserver, but it's the one holding the profiles, too, so if this
    one wouldn't be available login would be broken, anyway. I did this so I could
    slipstream newer files to the users' workstation installation if I needed to, later on.
    INSTALLATION
    In my installation folder, I have the following files:
    Code:
    dir install ; OpenOffice.org files (incl. modified setup.inf)
    file common.xcu ; Modified common.xcu where I set an additional
    ; template folder, for example
    file instbase.rsp ; Responsefile for base installation
    file instuser.rsp ; Responsefile for user's workstation installation
    file jobs.xcu ; Modified jobs.xcu (removed registration request)
    file MasterInstall.kix ; Script to install on a Citrix machine
    file OpenOffice-Associations.reg ; Override for document type associations
    file wkix32.exe ; kixtart w32 executable
    To install, make a shortcut to "wkix32.exe MasterInstall.kix" and doubleclick Wink
    You should be administrator on the Citrix machine, of course. As you can see from
    the script, installation mode is switched on automatically.
    Set your '$destination' as needed!
    Code:
    ========== MasterInstall.kix ==========
    ; OpenOffice.org 1.1.2 Master-Installation f�r Citrix
    ; Installiert OpenOffice nach D:\Programme\OpenOffice
    ; wgi 2004/04/28 (identisch mit OpenOffice 1.1.1)
    DEBUG Off
    ; Installation anhand des Response-Files
    $Destination = "D:\Programme\OpenOffice\"
    shell "change user /install"
    ? "Installiere nach "+$Destination
    ; * This would be a good place to copy some of the fonts
    ; * or other stuff to the machine
    shell ".\install\setup.exe -r:..\instbase.rsp"
    SHELL "regedit /s OpenOffice-Associations.reg"
    SHELL "change user /execute"
    MessageBox("Installation nach "+$Destination+" beendet.","Total sch�n, ey ;-)",64,60)
    ========== MasterInstall.kix ==========
    Let's have a look at instbase.rsp:
    Code:
    ========== instbase.rsp ==========
    [Environment]
    INSTALLATIONMODE=INSTALL_NETWORK
    INSTALLATIONTYPE=SPECIFY
    DESTINATIONPATH=D:\Programme\OpenOffice
    LANGUAGELIST=49
    MIGRATION=YES
    StartProcedure=PreSetup
    EndProcedure=PostSetup
    [Module_Specify]
    wgiModule=gid_Module_Prg_Wrt_Bin,gid_Module_Prg_Wrt_Help, [.......]
    InstallModuleSet=wgiModule
    [JAVA]
    JavaSupport=preinstalled_or_none
    [Windows_Desktop_Integration]
    Register4MsWord=Yes
    Register4MsExcel=Yes
    Register4MsPowerPoint=Yes
    RegisterAsDefaultHtmlEditor=No
    [Procedures]
    Sub PreSetup
    ShowSetup
    End Sub
    Sub PostSetup
    SetReboot( False )
    HideSetup
    End Sub
    ========== InstBase.rsp ==========
    Some leftover stuff from trying to exclude some modules here, I just didn't clean it up.
    Remember to set 'DESTINATIONPATH' to what you need.
    Note that we do a "INSTALL_NETWORK". Although most people in the forums agreed that it doesn't work, it does - at least since 1.1.0.
    Near the end of Masterinstall.kix I import some registry settings. For some reason,
    OpenOffice.org's method of setting the associations does not work for me on a Citrix
    (Terminal Server) machine, although it seemed to be the right way to do it. Worked
    on XP workstations, for example, but it looks like Terminal Servers treat this differently.
    So I exported the registry settings, changed the tree to HKEY_LOCAL_MACHINE, imported them again and voila, it works. File can be requested from the author, unfortunately you'd have to replace all occurences of the path to your own path.
    Should be easier to repeat the described process.
    At this point, we're all set with out new Citrix machine. We can take a look at the
    Domain logonscript now.

  • Using iChat to communicate with Pidgin users on a Citrix Presentation Serve

    We have been using iChat on OS X and Pidgin on Windows XP in our environment for several months now. We use Bonjour as the protocol so it makes for a very lightweight easy, inexpensive IM solution on our network (no server component needed).
    I hadn't noticed it before today, but I was communicating with a Pidgin user who was using a Citrix Presentation Server login (running Pidgin within that session), and the name that iChat displayed as the person I was talking to was not the actual person that was talking to me. iChat was displaying a different user who was also using Pidgin in another current session on the Citrix box. If I fired up Pidgin on my XP virtual machine and ran Pidgin from there, the user name is identified properly.
    So it appears that iChat is tying the user name of the IM session to the IP address and then looking it up from the list, which results in a random mis-identification of the IM user on the Citrix session. BTW, there was a Bonjour update a few days ago, it may actually be Bonjour rather than iChat itself. Anyone have any suggestions, ideas, bug fixes?

    I have no new info on this.
    It does seem a bit odd.
    Note:
    By default Bonjour broadcasts and receives data on port 5353 on UDP Protocol to let other Macs know it is there (Linked to mDNSResponder in Activity Monitor).
    See here http://support.apple.com/kb/TS1629
    It may pay to try and check Pidgen and the Mac are using the same ports.
    7:17 PM Friday; January 22, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Known issues with Citrix Xen App 6.5

    Are there any known issues with Citrix Xen App 6.5 and Adobe Reader 10.1.1?

    As per the administration guide, http://kb2.adobe.com/cps/837/cpsid_83709/attachments/Acrobat_Enterprise_Administration.pdf
    Citrix XenApp 5.0 and 6.0 are supported on 10.x products. As per my deployment tests, they work as expected.
    But am not sure of XenApp 6.5 with 10.0 products, though it should work but I have not tried them.
    In order to avoid any issue, we should stick with the correct prerequisites.

  • Need to know if Firefox 6 is compatible with Citrix XenApp Server 6 running on Windows Serve r2008 R2 virtualized on a VMWare environment. Thanks in advance!

    We are setting up a new environment for a client based on Citrix XenApp Server 6 running on Windows Server 2008 R2 which is virtualized on a VMWare hypervisor. Client uses Firefox and we need to know if it is going to work or not. If not, what is the root cause (i.e. XenApp, Windows Server 2008 R2, virtualization).
    Thanks again! :)

    I only ask because, in the past we were able to install a related product, InDesign CS5 in Citrix. In fact, Adobe had published documentation for doing exactly that: here. I just haven't seen anything similar for Illustrator CS6 and wanted to check.

  • UCS B200M3 with XENServer 6.0.2

    Hi all
    Today we installed a cisco ucs b-series environment with B200M3 / VIC1240 in order to operate a XENServer 6.0.2 environment.
    The whole UCS Installation was not a big deal, but the problem occured when we wanted to bring the different XENServer togehter in a Pool on the XENCenter. The message was: There was an error connecting to the server. the service contacted didn't replay properly.
    We checked all the driver issues - but XENServer 6.0.2 is supporting B200M3 / VIC 1240 if you install the 2.1.1.29 Adapter Driver - we also installed the necessary Hotfix on XenServer. UCS is running 2.0.(2q).
    So from my point-of-view it can't be a problem with the drivers because they are on the Supportmatrix from Cisco. But i couldn't find the VIC1240 on the Citrix HCL.
    We also checked Interface Settings, VLAN, Connectivity, etc. -> all works fine.
    Anyone has a clue what could be the issue?
    Please find attached the output of the LOG from the XENServer - the message is not very informational.
    Regards
    Patrick

    Smells like more of a Xenserver issue to be honest.   If you have IP connectivity, the drivers are loaded and functioning.  The clustering process is then responsibility of the OS.   I haven't done much work with Xen, but I would vouch you're good to go from a UCS side.  It does bother me that we list Xen as supported from our perspective including the VIC 1240, but Citrix HCL only shows the last generation Palo VIC.. Could be Citrix is just behind on updating their HCL - but may want to bring this up in your OS discussion/troubleshooting with Citrix if/when you engage them.
    If anyone else has ideas they're welcome to chime in.
    Regards,
    Robert

  • Connecting to XEN Server

    Trying to connect an XServe RAID to a XEN Server. There is a QLogic 5600 SAN box in between. I can see the XServe on both HBAs, but it reports 0 LUNs in the QLogic CLI. The XServe admin says that is because how he set it up and that I should not need to see any to attach to it. When the qla2xxx module loads, it detects the XServe and adds it as sg0 and sg3 as type 0. From what I've seen elsewhere on the net, it should be attaching the two paths as different drives. Should I be seeing LUNs on the XServe?
    from dmesg:
    qla2400 0000:14:00.0:
    QLogic Fibre Channel HBA Driver: 8.01.07.15
    QLogic HPAE312A -
    ISP2432: PCIe (2.5Gb/s x4) @ 0000:14:00.0 hdma+, host#=2, fw=4.00.26 IP
    Vendor: APPLE Model: Xserve RAID Rev: 1.51
    Type: Direct-Access ANSI SCSI revision: 05
    qla2400 0000:14:00.0: scsi(2:0:0:0): Enabled tagged queuing, queue depth 32.
    Vendor: IBM Model: ULTRIUM-TD3 Rev: 7AP1
    Type: Sequential-Access ANSI SCSI revision: 03
    qla2400 0000:14:00.0: scsi(2:0:1:0): Enabled tagged queuing, queue depth 32.
    Vendor: EXABYTE Model: MAGNUM 224 Rev: C240
    Type: Medium Changer ANSI SCSI revision: 04
    qla2400 0000:14:00.0: scsi(2:0:1:1): Enabled tagged queuing, queue depth 32.
    ACPI: PCI Interrupt 0000:14:00.1 -> GSI 18 (level, low) -> IRQ 18
    qla2400 0000:14:00.1: Found an ISP2432, irq 18, iobase 0xf0030000
    qla2400 0000:14:00.1: Configuring PCI space...
    PCI: Setting latency timer of device 0000:14:00.1 to 64
    qla2400 0000:14:00.1: Configure NVRAM parameters...
    qla2400 0000:14:00.1: Verifying loaded RISC code...
    ts: Compaq touchscreen protocol output
    qla2400 0000:14:00.1: Allocated (64 KB) for EFT...
    qla2400 0000:14:00.1: Allocated (1413 KB) for firmware dump...
    qla2400 0000:14:00.1: Waiting for LIP to complete...
    scsi 2:0:0:0: Attached scsi generic sg0 type 0
    scsi 2:0:1:0: Attached scsi generic sg1 type 1
    scsi 2:0:1:1: Attached scsi generic sg2 type 8
    st: Version 20050830, fixed bufsize 32768, s/g segs 256
    st 2:0:1:0: Attached scsi tape st0
    st0: try direct i/o: yes (alignment 512 B)
    qla2400 0000:14:00.1: LIP reset occured (f8f7).
    qla2400 0000:14:00.1: LIP occured (f8f7).
    qla2400 0000:14:00.1: LIP reset occured (f7f7).
    qla2400 0000:14:00.1: LOOP UP detected (4 Gbps).
    qla2400 0000:14:00.1: Topology - (F_Port), Host Loop address 0x0
    scsi3 : qla2xxx
    qla2400 0000:14:00.1:
    QLogic Fibre Channel HBA Driver: 8.01.07.15
    QLogic HPAE312A -
    ISP2432: PCIe (2.5Gb/s x4) @ 0000:14:00.1 hdma+, host#=3, fw=4.00.26 IP
    Vendor: APPLE Model: Xserve RAID Rev: 1.51
    Type: Direct-Access ANSI SCSI revision: 05
    qla2400 0000:14:00.1: scsi(3:0:0:0): Enabled tagged queuing, queue depth 32.
    scsi 3:0:0:0: Attached scsi generic sg3 type 0
    The device info on both ports is as follows:
    HBA 0: HPAE312A Port 1 WWPN 50-01-43-80-01-33-5B-DC Port ID 01-0E-00
    Path : 0
    Target : 0
    Device ID : 0x81
    Product Vendor : APPLE
    Product ID : Xserve RAID
    Product Revision : 1.51
    Serial Number : 1.51
    Node Name : 50-00-39-30-00-02-0C-47
    Port Name : 60-00-39-30-00-02-0C-47
    Port ID : 01-01-00
    Product Type : Disk
    Number of LUN(s) : 0
    Status : Online

    On 10/07/2013 15:26, chas wrote:
    > Downgrade of kernel fixed the nss fault, and traced the iSCSI fault to
    > the XEN server. Posted solution on the SUS sles11 board.
    As noted in TID 7012634 which Thomas (thsundel) posted, a newer
    kernel-xen has now been released which addresses this issue.
    HTH.
    Simon
    Novell Knowledge Partner
    Do you work with Novell technologies at a university, college or school?
    If so, your campus could benefit from joining the Technology Transfer
    Partner (TTP) program. See novell.com/ttp for more details.

  • UCS integration with vSphere - invalid URI error

    Hi,
    I am struggling to integrate UCS Manager with vSphere vCenter.
    The vCenter extension is being exported from UCSM without any errors, but when trying to install the plugin via vCenter Plug-in Manager I am getting this error:
    "Invalid URI: The URI is empty"
    I've found this on the web, but this doesn't bring me any closer to resolving the problem:
    http://terenceluk.blogspot.com/2010/11/error-message-when-clicking-on-download.html
    Any hints?
    Regards,
    Radek

    Hi Radek,
    So as long as the file is registered in the plugins within vCenter, and they show up in the list of plugins, then that is all you need to do. You do NOT need to click the "Download and Install" button as it will not work, as you have experienced. This is because it is an XML document used to enable and validate communication between UCS/Nexus 1000v and your vCenter server. There is no actual application that is executed and needs to be installed.
    Hope that helps to clarify
    Thanks,
    Michael

  • Extentrix Unleashes the Power of Citrix Presentation Server

    Extentrix Web Services 2.0 – Application Edition Enhances Access to Citrix Published Applications.
    RAK, UAE. -- 10/10/2007 -- -- Extentrix Systems, FZE a leading software development company specializing in infrastructure solutions for Microsoft Terminal Services and Citrix application delivery products, announced the release of the Extentrix Web Services 2.0 – Application Edition.
    Extentrix Web Services 2.0 – Application Edition provides an extensive set of web services APIs that allows developers to integrate Citrix published applications into their products and portals. It enables users to access the Citrix application delivery platform by invoking open standard web services APIs.
    It works closely with Extentrix Web Services 1.0 -Management Edition which gives developers unlimited power to manage Citrix Presentation Servers Farms through standard protocols.
    Extentrix Web Services 2.0 – Application Edition fully supports the latest Citrix Web Interface 4.6 protocol, packaged with Citrix Presentation Server 4.5 and Web Interface 4.6 and supports all features added in Feature Pack 1 (FP1) for Windows Server 2003.
    Extentrix Web Services APIs communicate directly with the Citrix XML service which enables it to deliver enhanced performance over the previous version. The APIs provide similar functionality as those provided by Citrix Web Interface, but allow for greater integration with ISV and custom applications.
    “Building on the fundamental open Web services standards, Extentrix has developed a great product that unlocks Citrix Application Delivery platform” said Matt Lull, Director of Global SAP Alliance. “Citrix is working Extentrix to utilize this great technology by developing new ways for SAP customers to access Citrix Published applications”
    “Extentrix has come up with innovative ways to unleash the power of Citrix Presentation Server and Extentrix Web Services 2.0 – Application Edition is the fruit of our extensive effort” said Alaaeddin Jallad, Extentrix President and Founder “We are very encouraged by the success of our first release of Extentrix Web Services, which lead us to work on a more advanced version to fully implement the latest Citrix Web Interface 4.6 protocol”
    “Building on open Web services standards, Extentrix has developed a fascinating product that extends Citrix’s Application Delivery platform” said Matt Lull, Director, Global SAP Alliance. “Citrix is working with Extentrix to demonstrate how SAP customers can seamlessly integrate their legacy applications with their NetWeaver Portal and composite applications”
    Additionally Extentrix’s Widget 2.0 with Citrix Presentation Server supports the new released Web Services for easier access to applications and is available for download at http://www.extentrix.com/CPAW.
    A whitepaper outlining how to modify the Web Interface 4.6 to use Extentrix web services can be found at resources’ page.
    Extentrix Web Services 2.0 – Application Edition for Citrix Presentation Server provides the following features:
    ● Enhanced Performance
    Performance is enhanced by connecting directly to Citrix XML service rather than using intermediate hubs like PNAgent site.
    ● Extra APIs
    Provide an enhanced list of APIs which grant functionality on par with Citrix Web Interface 4.6. New APIs include capabilities that help developers validate users’ credentials, get customizable information about published applications, launch them and more.
    ● Enhanced Error Handling Mechanism
    Say goodbye for unknown error exceptions. Errors returned back from the server are fully reported detailing the reasons. Implementing an effective error handling strategy ensures solving many issues like errors do no go undetected; applications do not terminate abruptly without warning or explanation, application stability is restored after an error, etc...
    ● Platform Independent and Simple to Integrate
    Since it is based on open standard protocols; it is simple to integrate it with any application written on any programming language, running on any platform.
    ● Simple Management Console
    Comes with an easy to manage Microsoft MMC snap-in console which helps users create new web services, edit existing ones, and browse & manage their web services. It functions as one management tool that is provided for both Extentrix Web Services Application and Management editions; it simplifies management mechanisms and enhances administration of Extentrix Products.
    A White Paper about Extentrix Web Services 2.0 – Application Edition is available on the product’s page.
    Extentrix Web Services 2.0 – Application Edition is available for download at Extentrix Site. Extentrix also provides developers with a test drive as well as examples to help them experience the power of Extentrix Web Services 2.0 – Application Edition.
    Extentrix has created a forum for the newly released Web services on its site; Extentrix Forum to encourage customers to share their experiences and problems for better support. Extentrix support will monitor the forum and answer developers’ issues.
    About Extentrix
    Founded in 2006, Extentrix Systems is a leading software development company specializing in virtualization and developing software solutions for Microsoft and Citrix platforms. Established by former software engineers at Citrix, Extentrix have developed access solutions that simplify and speed users’ access to Microsoft Terminal Services and Citrix Application Delivery platforms.
    Extentrix Systems is privately held with company headquarters in RAK, UAE. For more information, please visit the company’s Web site at www.extentrix.com or call +971-4-211-5490.
    Citrix® and Citrix Presentation Server™ Client are trademarks of Citrix Systems, Inc. and/or one or more of its subsidiaries, and may be registered in the U.S. Patent and Trademark Office and in other countries.

    Hi Nicholas (is it?)
    I'm afraid I never completed the testing, a long story but the client thought allowing Citrix access over the Internet to non corporate machines was too unsecure.
    I'm curious though as to why your set up does work even if it is for a short time.
    I'm enabled Smart tunneling and this did provide the correct IP address of the Citrix Farm head, instead of the ASA acting as a proxy, you might want to try that
    Sorry I couldn't help more
    Cheers Tony

  • Outlook 2010 using Citrix Presentation server does not save mail profile, O365 Mailbox

    We had on-premise exchange 2003 mailboxes which have been migrated to O365. Some users access their mailboxes(O365) using Outlook 2010 which is published using Citrix Presentation server 4.5. The AD accounts TS profile is pointing to \\%computername%\Tprofiles\template.man
    These users used outlook 2003 with this config with the on premise Exchange 2003 server and it saved the outlook profile. After outlook 2010 is configured to connect to the users O365 mailbox all is fine until the user logs off and logs back in, the profile
    setting is lost and has to re-setup. I should mention that Outlook does not auto discover the users mailbox but is able to if the outlook wizard is run either from desktop or RDP however that is not a concern unless these two are related
    issues. I am not sure if the issue is with Citrix ( I am not a Citrix admin) and some configuration fine tuning needs to happen on that front or the issue is somewhere else, setting up a roaming profile is kind of ruled out since this was not needed
    with Outlook 2003 and Exchange 2003.
    What would be the best way to get this working ? any help will be appreciated.

    It seems that deploying a PRF file is best based on the research as well as some of the links which Amy shared. Users are using Outlook 2010 using the /importprf switch however with outlook 2010 the " Encrypt data between Microsoft Outlook and Microsoft
    Exchange" is enabled by default this causes some of the users to be continuously prompted for authentication, I was able to manually fix the issue by disabling  "Encrypt data between Microsoft Outlook and Microsoft Exchange"
    Sorry cannot post images or link yet as my account is not verified...
    We can't do this manually but want to modify the PRF file to disable this. So far the only documentation referring to this is for Outlook 2003 to
    enable this,  it was disabled by default with this version of outlook.
    It is found at
    support.microsoft.com/kb/2006508
    Add "http://" to the link
    From this document I now know the setting is labelled - RPCEncryptData
    Which needs to be changed under the
    [ServiceEGS]
    and
     [Exchange Global Section]
    But I have no clue what values will disable it, anyone knows what values will disable it ? help would be appreciated.
    Thanks in advance.

  • (Central Server) has been communicating with suspicious IP

    RojoLoco wrote:How-to, posted by AlienVault:http://community.spiceworks.com/how_to/86147-how-to-investigate-alienvault-threat-alerts-in-spicewor...Yeah, I think I read this one once. It boils down to, "look up the IP address and think about what you find critically, then decide what to do from there."AlienVault will give you a threat score. I think I've seen as high as 2-3 but never higher (it's out of 10) on the links to their page. I usually paste the IP address into virustotal.com to determine if it's something I should be concerned about.Beyond that, I'm not sure what you'd be able to do aside from check for malware,block the IP addresses at the gateway, which, if you're getting a lot of them could be a tedious, losing battle, or, I guess you could rebuild those machines.Sometimes I get the feeling that, if it's a workstation,...

    I am getting these in spiceworks much more recently. Links point to an Alienvault for remediation. What is this?, becauseI am not seeing any elevated threats on my Palo Alto FirewallAll that is being said in my Spiceworks is the following:(Central Server) has been communicating with suspicious IP204.11.56.48. View Threat Details.(Central Server) has been communicating with suspicious IP 46.165.220.157. View Threat Details.(Central Server) has been communicating with suspicious IP 173.201.20.173. View Threat Details.(Central Server) has been communicating with suspicious IP 104.207.141.81. View Threat Details.(Central Server) has been communicating with suspicious IP 137.135.101.1. View Threat Details.(Central Server) has been communicating with suspicious IP 23.253.10.48. View Threat Details.(Central Server) has been communicating with...
    This topic first appeared in the Spiceworks Community

  • Problems using Bex 3.x on Citrix Terminal Server Nw2004s

    Hello,
    we've got some problems using Bex 3.x on Ctirix Terminal Server.
    1.) There are 3 Windows displayed (1)sapbex.xla
    remote (2) Mappe 1
    remote (3) Mappe
    Why these Remote-Windonws are diplayed ? Do I have to set a path ?
    2.) There occurs after a time when the Query should be changed ? No entry in SM21 ? An unexpected 'unable to show modal form within this context' error occured in wdbrlog"
    Is there any connection time out-setting for the Bex ?
    Thanks
    Frank

    Hi,
    the problem resulted while implementing Citrix Hotfix XE104W2K3R02 and was fixed with XE104R02W2K3001.
    Citrix Info:
    Hotfix Rollup Pack XE104W2K3R02 - For Citrix MetaFrame XP 1.0 for Windows Server 2003
    Known Issue(s) in this Release
    • After applying this hotfix rollup pack, seamless connections to Microsoft Office applications may display multiple icons on the client taskbar. To resolve this issue, apply Hotfix XE104R02W2K3001.
    Hotfix XE104R02W2K3001 - For MetaFrame XP 1.0 for Windows Server 2003
    Issue(s) Resolved in this Hotfix
    1. After applying Hotfix Rollup Pack 2, seamless connections to Microsoft Office applications may display multiple icons on the client taskbar.
    Kind regards
    Frank

  • Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    ... when i click go - connect to server, it comes up with connection failed.
    If you're trying to connect to a Bonjour server on the remote network, that won't work over a layer 3 VPN. Use something like Hamachi or one of the SSH-tunnelling Bonjour proxy apps for that.

  • Error while installing Oracle Apps server 10.1.3 with Oracle DB 11.2.0.2

    Error while installing Oracle Apps server 10.1.3 with Oracle DB 11.2.0.2 residing in the same server and being used by Apps server as it's metadata.
    bash-3.00$ export ORACLE_HOME=/data/ora11g/app/ora11g/product/11.2.0
    bash-3.00$ cd /data/OAS/install/soa_schemas/irca/
    bash-3.00$ ./irca.sh
    Integration Repository Creation Assistant (IRCA) 10.1.3.1.0
    (c) Copyright 2006 Oracle Corporation. All rights reserved.
    ERROR: Cannot find library - /data/ora11g/app/ora11g/product/11.2.0/jdbc/lib/ojdbc14.jar
    Please verify that the ORACLE_HOME is set correctly.
    bash-3.00$

    Hi Craig,
    Database 11gR2 could be used for Installing Application Server 10.1.3.x but with some limitation.
    So please review the note:-887365.1 Oracle Database 11g Release 2 (11.2) Certification for Oracle Application Server 10g (10.1.2, 10.1.3, 10.1.4)
    Section :- Oracle Application Server 10g Release 3 (10.1.3)
    Regards,
    Praaksh.

  • Windows Server 2008 black screen with mouse *PLEASE HELP*

    Hello fellow techs,
    I have been tearing my hair out for the past 12hrs on this issue.
    About 3 weeks ago, one of our clients reported that they were experiencing
    issues on the network so one of the staff went into the server room and noticed
    the screen was black with only the cursor. As they couldn't reboot, they
    decided to hold the power button to power it off. When they powered it back
    up, it went passed the windows loading
    splash screen, and again the screen is black with
    the mouse pointer in the center of the screen.
    I am diagnosing the server and find that at the black screen, I’m able to move
    the cursor and beyond that nothing happened. I started in safe mode with the
    exact same results.
    I have been trying many different solutions from posts that I have found in
    Google but no change.
    From other machines you can type \\servername in
    the run box and see the shared folders, as well as ping it.
    This is a very urgent request as I need to have the Server back up and running
    by tomorrow.
    I am quiet willing to pay for phone support with anyone that can assist as soon
    as possible. I am happy to transfer founds via Paypal.<o:p></o:p>
    PLEASE HELP!

    Hi,
    I agree with sm, you should give us more details. Also you should use sfc  /scannow
    command to scans the integrity of all protected system files and repairs files with problems when possible. For more details, please refer to the following article.
    Sfc
    http://technet.microsoft.com/en-us/library/ff950779.aspx
    Before going further, would you please let me know whether there were any changes on the affected server? Has windows update or any new device been added? Please also check your shadow copies.
    The Windows Server black screen may be caused by them.
    In addition, there are similar questions, please refer to.
    Windows Server 2008 black screen
    http://social.technet.microsoft.com/Forums/en-US/463b529b-26a6-4d5d-88f5-7d8b3460d165/black-screen-windows-2008-r2
    Windows Server 2008 and the Black Screen of Waiting
    http://projectdream.org/wordpress/2009/03/03/windows-server-2008-and-the-black-screen-of-waiting/
    By a way, you also can be able to boot into last know good configuration to solve the trouble. You can refer to the following similar question that provide the detailed operations.
    Windows Server 2008 black screen with only the mouse pointer showing
    http://social.technet.microsoft.com/Forums/en-US/5c878af8-78f2-430d-9530-a0e5ad73ff03/windows-server-2008-black-screen-with-only-the-mouse-pointer-showing
    Hope this helps.
    Best regards,
    Justin Gu

Maybe you are looking for

  • New user - switched from PC to Mac and can't figure out some mail issues

    I looked at the software discussions and they didn't have one for something as simple as mail! I've also checked mail help and the online support and Switch 101 and Mac 101. All of them tell me I can do something but not how in very simple steps. In

  • InfoSource  is not defined in the source system

    Hi,     We are getting error 'InfoSource  is not defined in the source system' while extracting data from Planning book to Cube in APO. Data is coming up to Extrack checker ( RSA3 ) but not comming to PSA. Please help me. Thanks Subba Rao

  • Mirror Mac Mini

    I have a new Mac Mini connected to my TV. I have Apple TV connected to another TV. I want to Mirror the Mac Mini but all i get is a jumbled screen that the mac mini is connected to and nothing on the tv that the apple tv is connected to. Any ideas.?

  • Publisher certificate is invalid while deploying conductor 2.4.1

    As seen in the attached screenshot, publisher certificate is shown invalid while deploying the conductor 2.4.1 ova.  As per the install guide, the publisher certificate should be valid.  What could be the reason.  I tried searching internet but could

  • Installation Guide for IDES ECC6

    Hi........ I need to install IDES server. can any one please provide me the IDES ECC6.0 installation guide. Operating system :Windows NT DB: Oracle 10.2.0.1.0 Thanks in advance............. Regards Raja.