0

I have a Windows Server 2016 and it is a virtual machine on a VPS.

I got this error message when I tried to configure Routing and Remote Access

Incoming connections are currently enabled on server. before you can configure routing and remote access on server you must open network connections and delete incoming connections.

I disabled all network connections but it didn't solve the problem.

Any idea what is the problem?

P.S: I have access to it via VNC.

enter image description here

Fred
  • 101
  • 3

1 Answers1

0

I found this on a Microsoft forum as a fix, might be helpful:

  1. Run the command prompt as administrator.
  2. Enter the command

REG ADD HKLM\SYSTEM\CurrentControlSet\Services\rasman /v SvcHostSplitDisable /t REG_DWORD /d 1 /f

  1. Enter the command

REG ADD HKLM\SYSTEM\CurrentControlSet\Services\remoteaccess /v SvcHostSplitDisable /t REG_DWORD /d 1 /f

  1. Restart your system

https://social.technet.microsoft.com/Forums/windows/en-US/2d22e0b6-2e9f-41da-9f46-1a002c57bdc6/cannot-create-new-incoming-connection?forum=win10itpronetworking

Ace
  • 478
  • 1
  • 6
  • I already tried that and it doesn't work – Fred Jul 14 '22 at 21:16
  • what does powershell `Get-NetAdapter -Name * -IncludeHidden | format-list` say? and `Get-NetTCPConnection -State Listen | Select-Object -Property LocalAddress, LocalPort, RemoteAddress, RemotePort, State | Sort-Object LocalPort |ft` – Ace Jul 14 '22 at 23:33
  • You could also try to reset the network stack: Type ipconfig /release and press Enter. Type ipconfig /flushdns and press Enter. Type ipconfig /renew and press Enter. (This will stall for a moment.) Type netsh int ip reset and press Enter. (Don’t restart yet.) Type netsh winsock reset and press Enter. – Ace Jul 14 '22 at 23:37