Cấu hình URL trong Exchange Server có thể thực hiện thông qua Exchange Admin Center (EAC) hoặc PowerShell. Trong đó, hầu hết các phần đều có thể được cấu hình qua EAC, ngoại trừ AutoDiscover, phần này bắt buộc phải dùng PowerShell. Trong bài viết này, bạn sẽ được hướng dẫn cách cấu hình URL chi tiết, tối ưu cho cả hai phương pháp.
Xem thêm:
cấu hình internal DNS Exchange
Tìm các URL của Exchange Server bằng PowerShell
1. Thông tin về URL internal và external trong Exchange
Dưới đây là bảng thông tin các URL internal và external cho từng dịch vụ trên Exchange Server:
Service | Internal and External URL |
---|---|
AutoDiscover | https://autodiscover.exoip.com/Autodiscover/Autodiscover.xml |
Exchange Control Panel(ECP) | https://mail.exoip.com/ecp |
Exchange Web Services(EWS) | https://mail.exoip.com/EWS/Exchange.asmx |
MAPI over HTTP | https://mail.exoip.com/mapi |
Exchange ActiveSync | https://mail.exoip.com/Microsoft-Server-ActiveSync |
Offline Address Book(OBA) | https://mail.exoip.com/OAB |
Outlook Web Access(OWA) | https://mail.exoip.com/owa |
PowerShell | https://mail.exoip.com/powershell |
Outlook Anywhere | mail.exoip.com |
2. Hướng dẫn cấu hình URL bằng PowerShell
Dưới đây là script PowerShell mẫu giúp bạn cấu hình URL cho các dịch vụ trên Exchange Server:
2.1 Script cấu hình
$subdomain = "mail" # Nhập subdomain $domain = "exoip.com" # Nhập domain $servername = "EX01-2016" # Nhập tên server # Cấu hình AutoDiscover Get-ClientAccessServer -Identity $servername | Set-ClientAccessServer -AutoDiscoverServiceInternalUri "https://autodiscover.$domain/Autodiscover/Autodiscover.xml" # Cấu hình Exchange Control Panel (ECP) Get-EcpVirtualDirectory -Server $servername | Set-EcpVirtualDirectory -ExternalUrl "https://$subdomain.$domain/ecp" -InternalUrl "https://$subdomain.$domain/ecp" # Cấu hình Exchange Web Services (EWS) Get-WebServicesVirtualDirectory -Server $servername | Set-WebServicesVirtualDirectory -ExternalUrl "https://$subdomain.$domain/EWS/Exchange.asmx" -InternalUrl "https://$subdomain.$domain/EWS/Exchange.asmx" # Cấu hình MAPI over HTTP Get-MapiVirtualDirectory -Server $servername | Set-MapiVirtualDirectory -ExternalUrl "https://$subdomain.$domain/mapi" -InternalUrl "https://$subdomain.$domain/mapi" # Cấu hình Exchange ActiveSync Get-ActiveSyncVirtualDirectory -Server $servername | Set-ActiveSyncVirtualDirectory -ExternalUrl "https://$subdomain.$domain/Microsoft-Server-ActiveSync" -InternalUrl "https://$subdomain.$domain/Microsoft-Server-ActiveSync" # Cấu hình Offline Address Book (OAB) Get-OabVirtualDirectory -Server $servername | Set-OabVirtualDirectory -ExternalUrl "https://$subdomain.$domain/OAB" -InternalUrl "https://$subdomain.$domain/OAB" # Cấu hình Outlook Web Access (OWA) Get-OwaVirtualDirectory -Server $servername | Set-OwaVirtualDirectory -ExternalUrl "https://$subdomain.$domain/owa" -InternalUrl "https://$subdomain.$domain/owa" # Cấu hình PowerShell Get-PowerShellVirtualDirectory -Server $servername | Set-PowerShellVirtualDirectory -ExternalUrl "https://$subdomain.$domain/powershell" -InternalUrl "https://$subdomain.$domain/powershell" # Cấu hình Outlook Anywhere Get-OutlookAnywhere -Server $servername | Set-OutlookAnywhere -ExternalHostname "$subdomain.$domain" -InternalHostname "$subdomain.$domain" -ExternalClientsRequireSsl $true -InternalClientsRequireSsl $true -DefaultAuthenticationMethod NTLM
2.2 Hướng dẫn thực hiện
Bước 1: Xác Định Thông Tin
- Subdomain: Ví dụ
mail
. - Domain: Tên miền chính, ví dụ
exoip.com
. - Server Name: Tên của máy chủ Exchange, ví dụ
EX01-2016
.
Bước 2: Chạy Script PowerShell
- Mở PowerShell với quyền Administrator.
- Sao chép và dán script trên vào PowerShell.
- Kiểm tra các giá trị URL sau khi chạy để đảm bảo cấu hình đúng.
Bước 3: Kiểm Tra
Sau khi hoàn thành, hãy kiểm tra các dịch vụ đã hoạt động đúng bằng cách:
- Truy cập URL đã cấu hình trong trình duyệt.
- Kiểm tra kết nối của các ứng dụng như Outlook hoặc thiết bị di động.
Cấu hình URL trong Exchange Server là một bước quan trọng để đảm bảo các dịch vụ hoạt động đúng và bảo mật. Với hướng dẫn chi tiết trên, bạn có thể dễ dàng thiết lập URL internal và external thông qua PowerShell. Hy vọng bài viết này giúp bạn hiểu rõ hơn về quá trình cấu hình URL. Cảm ơn bạn đã tham khảo trên ttnguyen.net.
Bài viết liên quan: