Windows 2012 r2 connection to a NTP server

What are the steps to allow my server running Windows Server 2012 r2 to connect a external Time Server with an ip address?

Hello,
for domain time configuration please see
http://blogs.msmvps.com/mweber/2010/06/27/time-configuration-in-a-windows-domain/
For workgroup machines please see
http://social.technet.microsoft.com/wiki/contents/articles/1072.how-to-sync-time-for-workgroup-machines-with-an-external-time-source.aspx
Best regards
Meinolf Weber
MVP, MCP, MCTS
Microsoft MVP - Directory Services
My Blog: http://blogs.msmvps.com/MWeber
Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
Twitter:  

Similar Messages

  • Connecting to an NTP server

    Good Afternoon.
    I'm having a big problem connecting to an NTP server like www.worldTimeServer.com. I want to create a java application that can load time from such servers then display it in my time text field. I do not know how to start.
    Can somebody teach me how to do it or give me a link that provides how-tos to do this.

    There is a package provided by http://jakarta.apache.org/commons/net/
    that have classes for ntp. I myself is new to this (very old) protocol but I'm
    building an application that is needing this service so if
    you find it helpful let me know.
    Message was edited by:
    gbohne

  • Dreamweaver (on Windows 7) wont connect to IIS (v7) Server using "FTP over SSL/TLS..."

    I am evauating wether to purchase Dreamweaver CS6...
    Dreamweaver CS6 trial (on Windows 7) wont connect to IIS (v7) Server using "FTP over SSL/TLS (explicit encryption)".  I have a NEW Godaddy SSL certificate installed on the IIS server. 
    On connecting Dreamweaver states: "Server Certificate has expired or contains invalid data"
    I have tried:
    -ALL the Dreamweaver Server setup options
    -Using multiple certificates (tried 2048 bit and 4096 bit Godaddy SSL certificates)
    -Made sure the certificate 'issued to' domain name matches my domain name.
    I am able to connect no problem using Filezilla, with equivalent Filezilla setting "Require explicit FTP over TLS".  I can also connect fine using Microsoft Expression web. 

    Thanks for your prompt reply.
    My comments:
    1) You should update your tread (forums.adobe.com/thread/889530) to reflect that it still occurs on CS6 (I had already read it but figured it was an old tread and thus should be fixed by now). 
    2) You said “These warnings will also pop up for your users if you have a store saying the SSL certificate does not match the domain/ip and this can make users checking out in a storefront very nervous” .  This does not seem to be correct – my https pages display properly using the same Godaddy certificate … using IE:
    3) Godaddy is not my host (I use Amazon AWS) – but the SSL certificate is from them.

  • Windows 2012. Assign RDS service Licensing Server on Standalone Server. Connect to the licensing server on the same server as RDS

    I have installed Windows Server 2012 Standard. I wish to run this server as a standalone server using local users as the authentication for RDS and not part of a domain. I have my RDS licenses loaded in RDS licensing service and all license show up
    in the Licensing Server.  I get events telling me to connect to a licensing server and I find no configuration tool now to connect to the local licensing service.  It will not let me connect to the licensing service on the same computer.

    Hi Bill,
    After referring to your post, we can understand that you are facing issue with licensing service for your RDS Server. As Ryan has provided great article for deploying RDSH server in workgroup mode you can refer that and also I would like you to check that have
    you specify a license Server for RDSH server to use. You can perform this setting under
    deployment properties of RD Licensing and specify the name of the server and in addition there is registry setting for this under below path.
    Computer Configuration\Policies\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Licensing
    More information:
    Specify a License Server for an RD Session Host Server to Use (For your reference)
    http://technet.microsoft.com/en-us/library/cc770585.aspx
    Hope it helps!
    Thanks,
    Dharmesh

  • When Firefox shows me an update and asks if I'd like to update, I click continue, but it doesn't update. It just goes to a "software update" window and says "connecting to the update server..." and then doesn't do anything else. It never updates. HELP!

    When I sign on to Firefox, a "Software Update" pops up and asks if I'd like to update Firefox. I click Yes/Continue and when I do, the page says "Downloading Firefox" - connecting to the update server... - but it never finishes. It continually shows the blue/white striped line.

    Start at '''http://www.mozilla.com''' and download the latest
    version. At the completion of the download '''don't let the setup
    start Firefox for you''', when the setup ends, start Firefox in your
    normal manner this way you will be less likely to create a new profile.
    The extra startup pages are temporary -- read them. The next time
    Firefox comes up you should be back to starting with your normal home page.
    Note: Firefox must be down once the install starts.
    :Close Firefox with File>Exit. Then make sure Firefox is not running --
    :On Windows: check the "Processes" tab in the Windows Task Manager.
    :On Mac: Firefox > Quit then Command+option+Esc, if Firefox running use Force quit
    '''Permission errors on Mac:'''
    "If you were getting permission errors on a Mac, download the latest
    Firefox version, then uninstall and reinstall Firefox. '''Do not let the uninstall remove remove anything but Firefox itself'''; otherwise, you will lose your profile directories and files as they contain your settings,
    bookmarks, history, extensions, passwords, and cookies.
    If you can't download as mentioned above, find your system and the Firefox version you want in releases, download and start the install as seen above
    * ftp://ftp.mozilla.org/pub/firefox/releases/

  • Help with connecting to NIST NTP server on port 123

    I can get NIST time in Daytime format using the rt_nist_date_time.llb example posted on ni.com, but I cannot connect to NIST NTP format time data using port 123.  I freely admit to being over my head with this stuff, and have spent much of this Thanksgiving holiday reading about UDP and TCP.
    The attached vi summarizes what I've tried so far.  The UDP case is what I thought would work, but I can't come up with a network address that the UDP-open vi likes.  Can anyone out there help this n00b tell the time?
    The attached file is supposed to be in 8.0 format, although I'm working in 9.0
    Here is a link discussing the time formats: http://tf.nist.gov/service/its.htm 
    Jeff 
    Solved!
    Go to Solution.
    Attachments:
    UDP.vi ‏17 KB

    jstevens wrote:
    THANK YOU!!!  I don't think I ever would have come up with connecting the web address to a Read or Write UDP rather than the Open UDP block.  Not to mention starting by opening port zero.
    Unlike TCP, UDP is a connectionless protocol. Here's a quick explanation in different words.
    A udp packet travels from a [sourceIP, sourcePort] to a [DestinationIP, destinationPort].
    UDP open basically reserves a local port used for sending (soucePort) and receiving (incoming packet with that same destinationPort). Since some local ports are always in use, you would generate an error if you would accidentally pick a used port. Picking zero is useful for requests (as in this case!), because the OS will pick an unused ephemeral port. The actual source port number does not matter because the NTP server will just send the reply packet back to whatever port it came from. (If you would write your own NTP server in LabVIEW, you would of course need to set the local port to 123, and would get a conflict if another NTP server is already running on your rig). Writing an NTP server in LabVIEW would be a trivial modification to the current code, try it! . Simply listen for packets on port 123, form a response packet based on the timestamp, and send it to whatever IP/Port it came from (that info is available from udp read) and then go back to listen for new requests.).
    UDP write sends a packet to the server using the above opened local port as source port. You can use the same connectionID to write to several other servers and ports, because UDP is connectionless. (TCP is connection based, so a TCP connection involves a defined source/destination pair)
    UDP read listens for incoming packets from all over the world at that same local port. It is very unlikely, but theoretically possible that other UDP packets will arrive at that same port, so you could even filter to make sure to read incoming packets until they match the port and IP of the original request. The current code is somewhat vulnerable to a DOS (denial of service) attack for example as follows: Imagine the guy in the next cubicle had means of sniffing your network traffic. He could write a small program that looks for your NTP requests and then immediately starts flooding your IP with meaningless UDP packets to the sourcePort you just used. The current program only reads one packet and thus will never see the return packet from the NTP server.
    UDP close frees up the local port and the computer is now no longer listening for packets on that port. Of course you could keep the port open for the duration of the program, especially if you intend to send UDP request once in a while during execution.
    Makes sense?
    LabVIEW Champion . Do more with less code and in less time .

  • How to install windows 2012 R2 in Sun Fire X4140 server

    I want to install Windows server 2012 R2 in Sun Fire X4140 server. But SIA not supporting this OS. So I installed windows 2008 using SIA in server and after that upgrade to 2012. But now the server is very slow and network gets hanged frequently.

    Hello Arun,
    Sun Fire X4140 server certified and supports only below windows operating systems.
    https://wikis.oracle.com/display/SystemsComm/Sun+Fire+X4140+Server+Product#SunFireX4140ServerProduct-MicrosoftWindowsServer
    Best Regards
    Bavyesh

  • Why won't a Windows 7 client connect to my web server?

    I've got 5 Mac clients that can connect to my Snow Leopard server. They use file sharing, iCal, and web services.
    We're trying to put a Windows 7 client on the network to use just file sharing and web services. Unfortunately, I can't get the Windows client to connect to the server at all.
    We're using an Airport Extreme as a local network router. All devices are successfully connecting to this device.
    When I try to access web services on the server using the Windows 7 client, I get an error message that the server is inaccessible.
    Anyone know what might be different about how the Windows device is accessing the server vs how the Mac devices are?

    How are you trying to connect to it? Just typing in its web address in a browser?
    Is your DNS configured correctly?

  • Windows 2008 R2 Domain Controller (PDC) - NTP server - time showing local CMOS clock

    I'm having issues setting an external source on a Windows 2008 R2 domain controller (PDC emulator role for the domain)
    Here is the output showing its source is the Local CMOS clock.
    C:\Windows\System32>w32tm /query /status
    Leap Indicator: 0(no warning)
    Stratum: 1 (primary reference - syncd by radio clock)
    Precision: -6 (15.625ms per tick)
    Root Delay: 0.0000000s
    Root Dispersion: 10.0000000s
    ReferenceId: 0x4C4F434C (source name:  "LOCL")
    Last Successful Sync Time: 06/11/2014 15:44:15
    Source: Local CMOS Clock
    Poll Interval: 6 (64s)
    1) I have performed the following on the DC with the PDC role:
    net stop w32time
    w32tm /config /syncfromflags:manual /manualpeerlist:"0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org"
    w32tm /config /reliable:yes
    net start w32time
    w32tm /query /configuration 
    [Configuration]
    EventLogFlags: 2 (Local)
    AnnounceFlags: 5 (Local)
    TimeJumpAuditOffset: 28800 (Local)
    MinPollInterval: 6 (Local)
    MaxPollInterval: 10 (Local)
    MaxNegPhaseCorrection: 172800 (Local)
    MaxPosPhaseCorrection: 172800 (Local)
    MaxAllowedPhaseOffset: 300 (Local)
    FrequencyCorrectRate: 4 (Local)
    PollAdjustFactor: 5 (Local)
    LargePhaseOffset: 50000000 (Local)
    SpikeWatchPeriod: 900 (Local)
    LocalClockDispersion: 10 (Local)
    HoldPeriod: 5 (Local)
    PhaseCorrectRate: 7 (Local)
    UpdateInterval: 100 (Local)
    [TimeProviders]
    NtpClient (Local)
    DllName: C:\Windows\System32\w32time.DLL (Local)
    Enabled: 1 (Local)
    InputProvider: 1 (Local)
    AllowNonstandardModeCombinations: 1 (Local)
    ResolvePeerBackoffMinutes: 15 (Local)
    ResolvePeerBackoffMaxTimes: 7 (Local)
    CompatibilityFlags: 2147483648 (Local)
    EventLogFlags: 1 (Local)
    LargeSampleSkew: 3 (Local)
    SpecialPollInterval: 3600 (Local)
    Type: NTP (Local)
    NtpServer: 0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org (Local)
    NtpServer (Local)
    DllName: C:\Windows\System32\w32time.DLL (Local)
    Enabled: 1 (Local)
    InputProvider: 0 (Local)
    AllowNonstandardModeCombinations: 1 (Local)
    VMICTimeProvider (Local)
    DllName: C:\Windows\System32\vmictimeprovider.dll (Local)
    Enabled: 1 (Local)
    InputProvider: 1 (Local)
    But still showing the output:
    C:\Windows\System32>w32tm /query /status
    Leap Indicator: 0(no warning)
    Stratum: 1 (primary reference - syncd by radio clock)
    Precision: -6 (15.625ms per tick)
    Root Delay: 0.0000000s
    Root Dispersion: 10.0000000s
    ReferenceId: 0x4C4F434C (source name:  "LOCL")
    Last Successful Sync Time: 06/11/2014 15:58:45
    Source: Local CMOS Clock
    Poll Interval: 6 (64s)
    2. If I resync and rediscover the following error appears: 
    w32tm /resync /rediscover 
    Sending resync command to local computer
    The computer did not resync because no time data was available.
    3. I've also clearing the current time config, by
    net stop w32time
    w32tm /unregister
    w32tm /register
    net start w32time
    But no change, it still shows the Local CMOS clock. 
    4. This event is showing 
    Log Name:      System
    Source:        Microsoft-Windows-Time-Service
    Date:          06/11/2014 15:43:30
    Event ID:      12
    Task Category: None
    Level:         Warning
    Keywords:      
    User:          LOCAL SERVICE
    Computer:      domaincontroller1
    Description:
    Time Provider NtpClient: This machine is configured to use the domain hierarchy to determine its time source, but it is the AD PDC emulator for the domain at the root of the forest, so there is no machine above it in the domain hierarchy to use as a time source.
    It is recommended that you either configure a reliable time service in the root domain, or manually configure the AD PDC to synchronize with an external time source. Otherwise, this machine will function as the authoritative time source in the domain hierarchy.
    If an external time source is not configured or used for this computer, you may choose to disable the NtpClient.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Time-Service" Guid="{06EDCFEB-0FD0-4E53-ACCA-A6F8BBF81BCB}" />
        <EventID>12</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-11-06T15:43:30.465619200Z" />
        <EventRecordID>77295</EventRecordID>
        <Correlation />
        <Execution ProcessID="256" ThreadID="2056" />
        <Channel>System</Channel>
        <Computer>domaincontroller1</Computer>
        <Security UserID="SID" />
      </System>
      <EventData Name="TMP_EVENT_DOMAIN_HIERARCHY_ROOT">
      </EventData>
    </Event>
    5. If I perform the below it appears DC2 is having problems but I'm not sure if related. 
    C:\w32tm /monitor
    DC1.domain.local *** PDC ***[192.168.1.1:123]:
        ICMP: 0ms delay
        NTP: +0.0000000s offset from DC1.domain.local
            RefID: 'LOCL' [0x4C434F4C]
            Stratum: 1
    DC2.domain.local[192.168.1.2:123]:
        ICMP: 0ms delay
        NTP: -110.4925481s offset from DC1.domain.local
            RefID: (unspecified / unsynchronized) [0x00000000]
            Stratum: 0
    DC3.domain.local[192.168.2.1:123]:
        ICMP: 0ms delay
        NTP: -0.0256084s offset from DC1.domain.local
            RefID: DC1.domain.local [192.168.1.1]
            Stratum: 2
    DC4.domain.local[192.168.2.4:123]:
        ICMP: 0ms delay
        NTP: -0.0011524s offset from DC1.domain.local
            RefID: 80.84.77.86.rev.sfr.net [86.77.84.80]
            Stratum: 2
    Warning:
    Reverse name resolution is best effort. It may not be
    correct since RefID field in time packets differs across
    NTP implementations and may not be using IP addresses.
    Any help would be much appreciated. Thanks. 
    Craig Brand

    I suspected some issue with AV so uninstalled. 
    To resolve the Access Denied I followed these steps: 
    stop w32time
    w32tm /unregister
    reboot
    regsvr32 /u w32time.dll
    w32tm /register
    sc query w32time -- you should see that the service is set to
    shared mode -- this is presumably how it should be -- if you try to start right now, you'll get the expected 1290 SID-related error
    reboot
    w32time should now automatically start at boot up and be running -- that was my result -- it's running as shared, started on its own, and I can do the w32tm /query commands successfully
    After rebooting the time service started. 
    I then repeated the steps: 
    net stop w32time
    w32tm /config /syncfromflags:manual /manualpeerlist:"0.pool.ntp.org, 1.pool.ntp.org, 2.pool.ntp.org"
    w32tm /config /reliable:yes
    net start w32time
    w32tm /query /configuration 
    And all worked. I'll wait a short while to see if this fixes the issue. I also have am SA case with MS so will confirm fix when resolved. 
    Craig Brand

  • Connect Oracle 9 client from windows 2012 server to 9.0 oracle database

    I have windows 2012 64 bit with installed oracle 9.0 32 bit client
    and i want to connect to oracle 9.0 64 bit server installed on windows 2003 R2 64 bit
    Is it possible to make this connection because when i have tried to connect received this error ORA-06413 connection is not open

    942609 wrote:
    I know that oracle client 9.2.0 is too old but company about i work have tests which run on this systemIf you are stuck using antiquated versions of software, the company really ought to stick to antiquated versions of the operating system as well. Trying to combine versions of the Oracle client that weren't even certified on Windows 2003 with a bleeding edge Windows 2012 system is a recipe for pain and suffering. Even if you appear to get things working, there are any number of bugs that will likely crop up over time due to the massive version incompatibility.
    If i understood right i can't make connection between oracle 9.2.0 32 bit client installed on windows 2012 to connect to oracle server 10 i?As others have pointed out, you probably can though you'll need to change the firewall rules. As others have stated, the firewall changes you'll need to make should probably be the same for a 9.2 client and a 10.2 client. But if you're determined to work with highly unsupported combinations of software, you're likely to have to embrace the idea that you're going to be blazing some new trails and that you'll have to spend a decent amount of time debugging issues that arise from your very unique combination.
    Justin

  • How To Increase TCP Connections in Windows 2012 Server

    We have installed our Java application in Windows 2012 Server. After running for some time application started showing Connection Time out. We have set TCP Parameters MaxUserPort = 65534 and TcpTimedWaitDelay = 30.
    We are facing the same issue, even after setting the parameters in windows registry. We have verified in our application, "There is no connection pool issue and no thread issue".
    We are using JDK v6.0.29, Tomcat 7, MYSQL 5.5.
    Apart from MaxUserPort and TcpTimedWaitDelay is there any other TCP parameters in Windows 2012 to improve performance of the server and our application.
    2) At the same time we have found that ‘There is sluggishness in I/O process’. Is there any registry parameters to improve I/O performance in the system.
    Thank You.

    Hi,
    You can refer the following article “Tuning TCP” part.
    Windows Server 2012 Performance
    Tuning Guidelines
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Windows VNC clients cannot connect to Snow Leopard Server native VNC server

    I am resurfacing the following related comment made in another post that discusses the same issue I am having with VNC on Snow Leopard. This is still an issue and I cannot connect to our Xserve's Snow Leopard Server with a VNC client on Windows.
    I don't want to install another third party VNC server onto our SL Server, and am looking for a VNC client for windows that will connect to our SL Server.
    Does anyone have any solutions?
    == QUOTED TEXT BELOW ==
    Re: Newbie: Connect Windows -> OSX Server
    Posted: Nov 4, 2009 9:26 AM in response to: Antonio Rocco
    I would politely disagree. Yes, definitely, the Mac 'Screen Sharing' app works a treat, and Apple Remote Desktop.app works as well, but I am coming from a Window's PeeCee.
    For me, connecting to my 10.5(.8) Server via tightvnc gives 'Server did not offer supported security type!". Using RealVNC to this machine states "No matching security types Do you wish to reconnect to ... ?" a telnet to this AppleVNCServer service (port 5900), shows RFB 003.889 *, or Remote Frame Buffer Major 3, minor 889.
    Also, connecting to multiple 10.6(.1) Clients with Tightvnc correctly asks for a password but then hangs at "Status: Security type requested". Using RealVNC opens, connects, asks for authentication, and exits. Telneting to this AppleVNCServer service (port 5900), also shows RFB 003.889 *.
    The Current Version of the protocol is supposed to be 3.8, that is Major version 3, minor version 8. Not 80 or 800 but Eight). http://www.realvnc.com/docs/rfbproto.pdf and I believe that tightvnc only supports up to version 3.7.
    On each station I have installed the 'old' OSXVnc.app as a service (to a unique port). OSXVnc utilizes protocol 3.3 and I can control them successfully, but that is of my own doing because of this issue.
    Now JollysFastVNC works a treat to any machine I have EVER tried to connect to. I have not tried COTVNC or any of the others (too slow for me, when they wer e around)
    Also, I just noticed that RealVNC states that their free and personal version will not connect to Mac OSX (x86 and PPC) but the Enterprise one will. I just Dl'ed the Enterprise Viewer and it gave essentially the same thing ('protocol is not valid' message, even after it asks for a password). Anyway, I am not here to hijack this thread, just trying to keep the info flowing and open.
    Maybe I am the only one with these problems but the bottom line is I cannot use Real or Tight, or UltraVNC to administer my server or clients as long as AppleVNCServer gives out the 003.889 protocol version.
    Peter
    * The ProtocolVersion message consists of 12 bytes interpreted as a string of ASCII characters in the format "RFB xxx.yyy\n" where xxx and yyy are the major and
    minor version numbers, padded with zeros.

    Searching on the net brought me to the same solution that Mr. Hoffman found as well, I was a bit skeptical at first but since he recommended it, and all my other attempts failed, it was a last resort and I have some additional notes of my own for a successful solution. Read the two links below first before doing anything, as they contribute to the solution in tandem.
    http://forums.macrumors.com/showpost.php?p=7221295&postcount=20
    http://forums.macrumors.com/showpost.php?p=9081641&postcount=28
    I should probably just create an entirely new post with all of the steps that worked for me, but it's rather straightforward nonetheless.

  • Ntp server connection

    Hello,
    have a problem connecting to the ntp server please see below:
    dslrouter#show ntp associations
          address         ref clock     st  when  poll reach  delay  offset    disp
    ~130.88.203.12    0.0.0.0          16     -    64    0     0.0    0.00  16000.
    * master (synced), # master (unsynced), + selected, - candidate, ~ configured
    dslrouter#show ntp status
    Clock is unsynchronized, stratum 16, no reference clock
    nominal freq is 250.0000 Hz, actual freq is 250.0000 Hz, precision is 2**16
    reference time is 00000000.00000000 (00:00:00.000 UTC Mon Jan 1 1900)
    clock offset is 0.0000 msec, root delay is 0.00 msec
    root dispersion is 0.00 msec, peer dispersion is 0.00 msec
    any reasons as this is the first time I am trying to synch to an NTP server.
    on the wan inbound I have permitted the destination udp 123 port through the access-list

    Do you have any ACL input in Gateway...disable one moment for test...it could be a problem from your ISP or ISP filter/Firewall input/output?? Could you try with another NTP server...

  • Error: Cannot connect to NTP server or NTP server is not running - Cisco IPS

    This is different scenario here:
    I have two Cisco IPS 4260-k9 and both are in production now.
    One of the IPSs is configured with NTP and works fines, but another one is not.
    When tried to configure when the device is ON and live in production and got the following error,
    Error from CLI:
    " Error: Cannot connect to NTP server or NTP server is not running "
    Error from IME:
    " Delivery failed.
    err Unaccepable Value - cannot connect to the NTP server or NTP server is not running"
    I am able to reach the NTP server, also the same NTP is working fine with other devices....
    Am I doing anything wrong?
    Please advise

    Hi,
    Now the error has changed:
    Session.connect: java.net.SocketTimeoutException: Read timed out
    I have increased the pooling interval to 1 Hr from 1 Min. Waiting for the next pooling interval result.
    Guide me if I am heading right.... or anything else needs to be done.
    Regards,
    Krishna Chauhan

  • Windows 2012 R2 RDWEB on a different port number

    Hi All,
    I am having a big problem at the moment.
    When I launch apps on the Windows 2012 Remote Session Host server it keeps prompting for credentials.
    I have 2 VMs under Hyperv-2012 R2:
    VM1 is an Exchange 2010 server with OWA on port 443
    VM2 is a Windows 2012 R2 Remote Desktop Session Host server which is also on port 443 for the gateway.
    Both servers have a domain verified SAN certificate installed.
    We only have 1 public IP address and HTTPS goes to the exchange server(OWA). There is a rule in the router for this.
    To access the RDWEB I thought I create an inbound rule on the router to redirect traffic on port 1443 to port 443 an point to the internal IP address for the RDP server.
    Therefore when from outside I type:
    httsp://mail.domain.com:1443/rdweb, I get to the logon page after I supply my credentials, but when I launch the remote app I get the logon prompt repeatedly.
    Then I changed the HTTPS in the router to my terminal server instead of the exchange server, and it works perfectly.
    But I need port 443 for owa.
    So I went in the RD gateway config and change the port in there from 443 to 1443 thinking this would do the trick, but it does not.
    When I tried to access RDWEB from the outside it prompts again.
    Are there any other ports I have to open for this to work on port 1443?
    Maybe it has to do with the digital certificate not working with non standard ports?
    Any help appreciated.
    Thanks and regards
    Ipnotech

    Hi,
    1. What is the name on the certificate assigned to the various RDS purposes listed in Server Manager -- RDS -- Overview -- Deployment -- Certificates tab?
    2. Please run the following commands in an administrator powershell prompt:
    Import-Module RemoteDesktop
    Set-RDSessionCollectionConfiguration -CollectionName QuickSessionCollection -CustomRdpProperty "gatewayhostname:s:yourgateway.domain.com:1443"
    In the above please substitute the public FQDN for your RDG server (mail.domain.com.au:1443).
    3. In RD Gateway Manager, Properties of your server, Transport settings tab, please set both TCP and UDP ports to 1443.
    4. On your firewall, please forward TCP port 1443 and UDP port 1443 to your RDG server.
    5. Please double-click Set-RDPublishedName.ps1, agree to run it if you get the security prompt, and then enter the FQDN that matches what is on the certificate you are using.
    6. After completing the above please refresh the RDWeb page if you have it open already, and then reply back with any error messages you may be receiving.
    Please note that if you are using the same FQDN as your Exchange server you may need to reconfigure things a bit in order to make it work.  For example, an outside user connects to the RDG using FQDN of mail.domain.com.au, then the RDG will attempt
    to connect to mail.domain.com.au (internally), and of course it will be connecting to the Exchange server using the internal ip address.  That is why I was suggesting a different name (and certificate) for your RDS server, like remote.domain.com.au. 
    It would be a single-name certificate which is inexpensive.
    The DNS records both internal and external.
    Thanks.
    -TP

Maybe you are looking for

  • Cross-reference destination

    Hi, I would like to set destination for cross-reference to paragraph style like I do when I click on cross-reference options. On options screen I have a list of paragraph styles, but I don't get how to do that in script(JS). Thnx

  • Odd Safari "log in" window message

    I've started getting a window pop up every time I launch safari and try to load my homepage, which is set to google. It says "To view this page, you must log in to this area on www.google.co.uk:80:" It then asks me for a username and password, with t

  • HT201077 How can I share photos take last year from my aperture library?

    Photo stream seems to reject photos from older aperture libraries when I try to share them using either drag and drop or share button.

  • Does 10% discount apply to iPhone 3G?

    Sorry for the non-tech related question but I received a 10% off discount card from Apple a couple of months ago and I was wondering if I can use it to purchase an iPhone 3G at the Apple store? I've heard that you can't, so I just wanted to confirm.

  • Barcode Printing from EP --using barcode4J (Gurus kindly help me)

    Dear Experts, Barcode Printing from EP --using barcode4J we want to print employee number as barcode in EP(version 6.4 SP 19). we tested the barcode creation a standalone class, it works fine Sample Code as follows ================================ Co