Scripts: UMS - IGEL-Community/IGEL-Community.github.io GitHub Wiki

Re-enable TLSv1 and TLSv1.1 on UMS tested on 5.08.100 - 6.04.120

UMS Server 5.08.100 does now provide TLSv1.2 only:

[Server, common]

  • Changed: Because of security reasons, the https connector of the UMS Server does now provide TLSv1.2 only.

so UDLXV4 Devices are not able to use HTTPS Resources on UMS Server anymore.

  1. edit "C:\Program Files (x86)\IGEL\RemoteManager\rmguiserver\conf\server.xml" Line 14

  2. change:

  • remove: ...*sslEnabledProtocols="TLSv1.2"*...

  • add: ...*sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2"*...

  1. Restart service IGELRMGUIServer

PowerShell script to setup the Windows firewall on UMS-Server

New-NetFirewallRule -Name "IGEL-UMS-In-TCP" -DisplayName "IGEL UMS TCP" -Direction Inbound -LocalPort 8443,9080,30001,30002 
 -Protocol TCP -Action Allow -Group "IGEL Universal Management Suite"
New-NetFirewallRule -Name "IGEL-UMS-In-UDP" -DisplayName "IGEL UMS UDP" -Direction Inbound -LocalPort 30001,30002 -Protocol 
 UDP -Action Allow -Group "IGEL Universal Management Suite"