Skip to main content

Ports needs to be opened in Client computer to join in domain (AWS)

UDP Port 88
UDP and TCP Port 135
TCP Port 139 and UDP 138
UDP Port 389
TCP and UDP Port 445
TCP and UDP Port 464
TCP Port 3268 and 3269
TCP and UDP Port 53

It also requires the following ephemeral ports:
TCP & UDP 1025-5000

TCP & UDP 49152-65535

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...