IT tutorials
 
Technology
 

Exchange Server 2010 : Post Installation Configuration Steps (part 3) - Configuring the Hub Transport Role

10/15/2013 9:42:09 PM
- Free product key for windows 10
- Free Product Key for Microsoft office 365
- Malwarebytes Premium 3.7.1 Serial Keys (LifeTime) 2019

2. Configuring the Hub Transport Role

For the Hub Transport role, we'll configure accepted domains, which are domains for which Exchange is responsible:

  1. On the left, navigate to Microsoft Exchange – On-Premises (server) => Organization Configuration => Hub Transport.

  2. Click the Accepted Domains tab in the center pane.

  3. In the Actions pane on the far right, click New Accepted Domain.

  4. Give the accepted domain a name, such as ehloworld.com, and enter the domain name for which Exchange will receive email, such as ehloworld.com.

  5. Click Authoritative Domain to indicate that Exchange is responsible for delivering email for that domain in the Exchange organization.

  6. Click New, then click Finish.

  7. Right-click the newly created accepted domain and choose Set As Default, as shown in Figure 4. Click Yes when you see the confirmation message.

Figure 4. Setting the accepted domain as the default

You can accomplish the same thing in the Exchange Management Shell using the New-AcceptedDomain cmdlet and the Set-AcceptedDomain cmdlet together:

New-AcceptedDomain -Name ehloworld.com 

-DomainName *.ehloworld.com

-DomainType authoritative |

Set-AcceptedDomain -MakeDefault $true

2.1. Configuring Email Address Policies

Email address policies define how email addresses are assigned to recipients within the organization. We'll configure one for our domain, ehloworld.com, using these steps in the Exchange Management Console:

  1. Navigate to Microsoft Exchange – On-Premises (server) => Organization Configuration => Hub Transport => E-mail Address Policies.

  2. In the Actions pane, click New E-mail Address Policy.

  3. Enter a name for the policy, such as ehloworld.com. Leave the Recipient Container and Recipient Type options at their default settings, and click Next.

  4. Since we'll apply this policy to all users, we don't need to define conditions. At the Conditions screen, click Next.

  5. On the E-Mail Addresses page, click Add. Make sure that the E-mail Address Local Part check box is selected, and choose a format for the email addresses. The options are as follows:

    • Use Alias

    • First Name.Last Name (John.Smith)

    • First Name Initial And Last Name (Jsmith)

    • First Name And Last Name Initial (Johns)

    • Last Name.First Name (Smith.John)

    • Last Name Initial And First Name (Sjohn)

    • Last Name And First Name Initial (Smithj)

  6. Check the option Select The Accepted Domain For The E-mail Address, click Browse, and choose the domain added in the accepted domains process earlier, such as ehloworld.com, as shown in Figure 5.

    Figure 5. Email address format
  7. Click OK twice, and then click Next.

  8. On the Schedule screen, choose Immediately and click Next. This will apply the policy to all current recipients immediately.

  9. On the New E-mail Address Policy summary screen, click New.

  10. When the wizard completes, click Finish.

As with all the previous configuration settings we've made, we can use the Exchange Management Shell to make these changes using both the New-EmailAddressPolicy and Update-EmailAddressPolicy cmdlets together:

New-EmailAddressPolicy -Name ehloworld.com 

-EnabledPrimarySMTPAddressTemplate "SMTP:%g.%[email protected]"

-IncludedRecipients AllRecipients -Priority 1 |

Update-EmailAddressPolicy

To verify that the policy has been applied, navigate to Microsoft Exchange On-Premises (server) => Recipient Configuration => Mailbox. Right-click the Administrator account and choose Properties. Click the E-Mail Addresses tab, and you'll see that the list includes the newly added address.

2.2. Send Connectors

A send connector is an object that holds configuration information on how Exchange can send email out of the organization. This can include to the Internet as well as to partner email systems. Exchange has no send connectors configured by default. We'll use the Exchange Management Console to create one for sending mail to the Internet:

  1. Navigate to Microsoft Exchange – On-Premises (server) => Organization Configuration => Hub Transport.

  2. In the Actions pane, click New Send Connector.

  3. On the Introduction screen, give the send connector a name, such as Outbound to Internet.

  4. Under Select The Intended Use For This Send Connector, choose Internet and click Next.

  5. On the Address Space page, click Add.

  6. In the Address field, enter *.

  7. Check the box Include All Subdomains, as shown in Figure 6, click OK.

    Figure 6. Send connector settings
  8. Click Next.

  9. On the Network Settings screen, click Use Domain Name System (DNS) "MX" Records To Route Mail Automatically, and click Next.

  10. On the Source Server screen, verify that the local server is listed, and click Next.

  11. On the New Connector screen, click New, then click Finish.

To accomplish this in the Exchange Management Shell, use the New-SendConnector cmdlet:

New-SendConnector -name "Outbound to Internet" 

-AddressSpaces "*" -DNSRoutingEnabled $true

-FQDN "mail.ehloworld.com" -Usage Internet

2.3. Receive Connectors

A receive connector is just the opposite of a send connector. Receive connectors hold configuration for how Exchange will receive mail. This can include mail from client machines as well as from the Internet and other servers.

When Exchange Server 2010 is installed, two receive connectors are created. The first is called Client (server), such as Client EX1. This connector receives mail on TCP port 587, and is used for receiving email from client computers.

The second receive connector is called Default (server), such as Default EX1. This connector receives mail on TCP port 25, and is designed for receiving mail from other servers within your organization that use authentication.

By default, there is no receive connector configured to receive email from the Internet. Creating one is fairly straightforward with these steps:

  1. Open the EMC and navigate to Microsoft Exchange – On-Premises (server) => Server Configuration => Hub Transport.

  2. In the Actions pane, click New Receive Connector.

  3. On the Introduction screen, give the receive connector a name, such as Inbound from Internet.

  4. Under Select The Intended Use For This Receive Connector, choose Internet, and click Next.

  5. On the Local Network settings screen, highlight the (All Available IPv4) entry and click Edit.

  6. Click Specify An IP address, and enter the IP address of the server, as shown in Figure 7.

    Figure 7. Receive connector settings
  7. Click OK.

  8. Enter the FQDN name that will be used, such as mail.ehloworld.com, and click Next.

  9. On the New Connector page, click New, and then click Finish.

In the Exchange Management Shell, you can create the same receive connector using the New-ReceiveConnector cmdlet:

New-ReceiveConnector -name "Inbound from Internet" 

-Usage Internet -Bindings "10.9.0.96:25"

-FQDN "mail.ehloworld.com"

2.4. Installing Antispam Agents

Like its predecessor, Exchange Server 2010 comes with some robust antispam agents. These agents are installed by default on servers with the Edge Transport role installed, but can also be installed on servers with the Hub Transport role. These agents can be useful when you're testing Exchange or in organizations that don't have Exchange servers with the Edge Transport role installed.

Installation of the antispam agents is accomplished in the Exchange Management Shell:

  1. Close the Exchange Management Console.

  2. Click Start => All Programs => Microsoft Exchange Server 2010 => Exchange Management Shell.

  3. Navigate to the \scripts folder (which by default is c:\Program Files\Microsoft\Exchange Server\V14\scripts).

  4. Type .\Install-AntispamAgents.ps1 and press Enter, as shown in Figure 8.

    Figure 8. Installing antispam agents
  5. Restart the Exchange Transport service from within the Exchange Management Shell using the Restart-Service cmdlet and specifying the name of the service, as shown here:

    Restart-Service MSExchangeTransport

  6. Close the Exchange Management Shell.

  7. Restart the EMC and navigate to Microsoft Exchange => Microsoft Exchange On-Premises (server) => Organization => Hub Transport. You should notice an Anti-spam tab now that allows for configuration of the various agents. All the agents should be enabled.

2.5. Testing the Configuration

You now have a significant amount of configuration finished in Exchange. You can test Exchange using some built-in PowerShell cmdlets. To begin, start the Exchange Management Shell and type Test-mailflow. Check the results in the TestMailflowResult column. It should say Success.

Next, test MAPI client connectivity using Test-MAPIConnectivity. You should see Success under Result for each database.

You can verify that all necessary Exchange-related services are running by using Test-ServiceHealth. The output of this cmdlet breaks down the services needed for each of the installed server roles. If everything is running correctly, you should see True for each of the RequiredServicesRunning results.

 
Others
 
- Exchange Server 2010 : Post Installation Configuration Steps (part 2) - Configuring the Mailbox Role
- Exchange Server 2010 : Post Installation Configuration Steps (part 1)
- Leveraging Visual Studio 2010 with InfoPath : Create a Custom Task Pane
- Leveraging Visual Studio 2010 with InfoPath : Create an InfoPath 2010 Add-In
- Leveraging Visual Studio 2010 with InfoPath : Access Your Form Within a Visual Studio Workflow
- SQL Server 2008 : Backup and recovery - Backup compression
- SQL Server 2008 : Backup and recovery - Database snapshots
- SQL Server 2008 : Online piecemeal restores
- Windows 7 : Troubleshooting Your Network - Testing Network Connectivity, Diagnosing File and Printer Sharing Problems
- Windows 7 : Troubleshooting Your Network - Testing Network Cables , Checking Network Configuration
 
 
Top 10
 
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
Technology FAQ
- Is possible to just to use a wireless router to extend wireless access to wireless access points?
- Ruby - Insert Struct to MySql
- how to find my Symantec pcAnywhere serial number
- About direct X / Open GL issue
- How to determine eclipse version?
- What SAN cert Exchange 2010 for UM, OA?
- How do I populate a SQL Express table from Excel file?
- code for express check out with Paypal.
- Problem with Templated User Control
- ShellExecute SW_HIDE
programming4us programming4us