0 如何使用 NXLOG 管理配置 Windows AD Server 日誌 如何使用 NXLOG 管理配置 Windows Server AD 日誌 V ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologi

Size: px
Start display at page:

Download "0 如何使用 NXLOG 管理配置 Windows AD Server 日誌 如何使用 NXLOG 管理配置 Windows Server AD 日誌 V ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologi"

Transcription

1 0 如何使用 NXLOG 管理配置 Windows AD Server 日誌 如何使用 NXLOG 管理配置 Windows Server AD 日誌 V ( 繁體 ) 0 (01-DOC-CHT-002) 2017/05/24

2 前言 本文件描述 N-Reporter 使用者如何使用 Open Source 工具 NXLOG 管理配置 Windows Server AD 2003/2008/2012 的日誌 ( Eventlog ), 將事件 (Event) 轉成 syslog, 再轉發到 N-Reporter 做正規化 稽核與分析 本文件配置的環境分別為 Windows Server 2003 AD Windows Server 2008 AD Windows Server 2012 AD NXLOG 適用於記錄大量事件的環境 當 Windows Server 日誌 ( Eventlog ) 每秒最大記錄速率超過 700 筆, 請選用本文件介紹的 NXLOG 的配置方式 文件章節如下 : 1 安裝設定 Windows Server AD 環境中的 NXLog For Windows Server 2003 AD For Windows Server 2008 AD For Windows Server 2012 AD Windows 2003 Active Directory Server 稽核設定 設定網域使用者登入登出的稽核原則 設定共享資料夾權限與稽核原則 Windows 2008 Active Directory Server 稽核設定 設定網域使用者登入登出的稽核原則 設定共享資料夾權限與稽核原則 Windows 2012 Active Directory Server 稽核設定 設定網域使用者登入登出的稽核原則 設定共享資料夾權限與稽核原則 連絡資訊

3 2 如何使用 NXLOG 管理配置 Windows AD Server 日誌 1 安裝設定 Windows Server AD 環境中的 NXLog 1.1 For Windows Server 2003 AD 1. 下載 NXLOG: 前往 URL: 請下載網頁中提供的最新版 nxlog-ce-x.x.xxxx.msi, 本例為下載 nxlog-ce msi 2. 安裝 NXLOG: 滑鼠雙點 nxlog-ce msi, 點選 [ Install ], 執行 NXLog 程式安裝步驟 3. 下載設定 Windows 2003 的 NXLOG 配置檔 nxlog_win2k3.conf: 前往 URL: 開啟並編輯此檔案路徑 "C:\Program Files (x86)\nxlog\conf\nxlog.conf" 的 NXLOG 配置檔, 將上面的 URL 上的 nxlog_win2k3.conf 檔案裡的設定內容複製, 然後將其貼上並覆蓋 C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 nxlog.conf 檔案中的參數設定後存檔 註 1 : 預設建議使用者採用此設定檔. 此設定只輸出主機稽核 物件存取 帳戶管理等 Eventlog, 會過濾大部分非必要的 Eventlog 雜訊, 減輕 NXLOG 程式對 Windows AD 主機效 能的負擔 註 2:32 位元 OS 的 NXLOG 安裝路徑在 "C:\Program Files\nxlog\conf\nxlog.conf" 64 位元 OS 的 NXLOG 安裝路徑在 "C:\Program Files (x86)\nxlog\conf\nxlog.conf" 4. 下載設定 Windows 2003 的 NXLOG 配置檔 nxlog_win2k3_all.conf ( 輸出全部的 Eventlog) 前往 URL: N-Reporter 提供法規報表統計 Windows AD 所有 Eventlog 使用者若是需要 Windows AD 的法規報表, 請將 nxlog_win2k3_all.conf 檔案裡的設定內容複製, 然後將其貼上並覆蓋 C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 nxlog.conf 的參數設定後存檔 此設定將會輸出所有 Windows AD 的 Eventlog, 此設定檔會需要 Windows AD 主機配備較高的硬體效能來執行 NXLOG 2

4 ## This is a sample configuration file. See the nxlog reference manual about the ## online at ## Please set the ROOT to the folder your nxlog was installed into, ## otherwise it will not start. #define ROOT C:\Program Files\nxlog define ROOT C:\Program Files (x86)\nxlog Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data LogFile %ROOT%\data\nxlog.log <Extension syslog> Module xm_syslog </Extension> <Input in_eventlog> # For windows 2003 and earlier use the following: Module im_mseventlog Exec parse_syslog_bsd(); \ if ($EventID == 672 or $EventID == 673 or $EventID == 675 or $EventID == 528 or $EventID == 529 or $EventID == 538 or $EventID == 540 or $EventID == 551 or $EventID == 560 or $EventID == 612 or $EventID == 624 or $EventID == 626 or $EventID == 627 or $EventID == 628 or $EventID == 629 or $EventID == 630 or $EventID == 631 or $EventID == 632 or $EventID == 633 or $EventID == 634 or $EventID == 635 or $EventID == 636 or $EventID == 637 or $EventID == 638 or $EventID == 641 or $EventID == 642 or $EventID == 645 or $EventID == 646 or $EventID == 647) { $SyslogFacilityValue = 13; } \ else if ($SourceName == "Service Control Manager") { $SyslogFacilityValue = 13; } \ else if ($SourceName =~ /^MSSQL*/) { $SyslogFacilityValue = 18; } \ else\ {\ drop();\ } </Input> <Output out_eventlog> Module om_udp Host Port 514 Exec $Message = string($eventid) + ": " + $Message; Exec if ($EventType == 'ERROR' or $EventType == 'AUDIT_FAILURE') { $SyslogSeverityValue = 3; } \ else if ($EventType == 'WARNING') { $SyslogSeverityValue = 4; } \ else if ($EventType == 'INFO' or $EventType == 'AUDIT_SUCCESS') { $SyslogSeverityValue = 5; } Exec to_syslog_bsd(); </Output> <Route eventlog> Path in_eventlog => out_eventlog </Route> 綠色文字部位請依 OS 環境為 32 位元或 64 位元選擇 NXLOG 正確的安裝路徑, 本文件範例環境為 64 位元 OS 系統, 選擇 "define ROOT C:\Program Files (x86)\nxlog" 紅色文字部位請輸入 N-Reporter 機器 IP, 本文件範例為輸入 " " 3

5 4 如何使用 NXLOG 管理配置 Windows AD Server 日誌 設定範例如下圖 : 5. 啟動 NXLOG 程式 : a. 以系統管理員身份執行 [ 命令提示字元 ] 啟動 NXLOG : [ 開始 ] [ 所有程式 ] [ 應用附屬程式 ] [ 命令提示字元 ], 滑鼠右鍵點 [ 命令提示字元 ], 選擇 [ 以系統管理員身分執行 ] 命令提示字元輸入 : net stop nxlog net start nxlog # 會看到以下訊息 The nxlog service is starting. The nxlog service was started successfully. b. [ 開始 ] [ 所有程式 ] [ 系統管理工具 ] [ 服務 ] 找到 [ nxlog ], 右鍵點服務 [ nxlog ], 點選 [ 啟動 ] 或 [ 重新啟動 ] 4

6 6. 檢查 NXLOG 是否正常啟動 : 開啟檢查 NXLOG 的 log 檔, 檔案路徑為 "C:\Program Files (x86)\nxlog\data\nxlog.log" 若沒有顯示 Error 的訊息, 表示正常啟動 7. 新增 Windows Server 2003 AD Syslog 設備時, 資料格式請選擇 [ Windows AD ] 註 : 因 NXLOG 沒有 Eventlog to Syslog Utility 將事件編碼轉成 UTF8 編碼的功能, 所以新增 Windows Server 2003 AD 設備時請注意語系選擇, 避免出現亂碼 8. 語系選擇 : OS Windows Server 2003 AD 繁體版請選擇 [ BIG5 ] 編碼 OS Windows Server 2003 AD 簡體版請選擇 [ GB2312 ] 編碼 OS Windows Server 2003 AD 英文版請選擇 [ UTF8 ] 編碼 1.2 For Windows Server 2008 AD 1. 下載 NXLOG: 前往 URL 請下載網頁中提供的最新版 nxlog-ce-x.x.xxxx.msi, 本例為下載 nxlog-ce msi 2. 安裝 NXLOG: 滑鼠雙點 nxlog-ce msi, 點選 [ Install ], 執行 NXLog 程式安裝步驟 3. 下載設定 Windows 2008 NXLOG 配置檔 nxlog_win2k8.conf: 前往 URL: 開啟並編輯此檔案路徑 "C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 NXLOG 配置檔, 將上面的 URL 上的 nxlog_win2k8.conf 裡的設定內容複製, 然後貼上並覆蓋 C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 nxlog.conf 檔案中的參數設定後存檔 註 1 : 預設建議使用者採用此設定檔. 此設定只輸出主機稽核 物件存取 帳戶管理等 Eventlog, 會過濾大部分非必要的 Eventlog 雜訊, 減輕 NXLOG 程式對 Windows AD 主機效能的負擔 註 2:32 位元 OS NXLOG 安裝路徑在 "C:\Program Files\nxlog\conf\nxlog.conf" 64 位元 OSNXLOG 安裝路徑在 "C:\Program Files (x86)\nxlog\conf\nxlog.conf" 5

7 6 如何使用 NXLOG 管理配置 Windows AD Server 日誌 4. 下載設定 Windows 2008 的 NXLOG 配置檔 nxlog_win2k8_all.conf ( 輸出全部 Eventlog) 前往 URL: N-Reporter 提供法規報表統計 Windows AD 所有 Eventlog 使用者若是需要 Windows AD 的法規報表, 請將 nxlog_win2k8_all.conf 檔案裡的設定內容複製, 然後將其貼上並覆蓋 C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 nxlog.conf 的參數設定後存檔 此設定將會輸出所有 Windows AD 的 Eventlog, 此設定檔會需要 Windows AD 主機配備較高的硬體效能來執行 NXLOG 6

8 ## This is a sample configuration file. See the nxlog reference manual about the ## online at ## Please set the ROOT to the folder your nxlog was installed into, ## otherwise it will not start. #define ROOT C:\Program Files\nxlog define ROOT C:\Program Files (x86)\nxlog Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data LogFile %ROOT%\data\nxlog.log <Extension syslog> Module xm_syslog </Extension> <Input in_eventlog> # For windows 2008/vista/7/8/2012/2012r2 and latter use the following: Module im_msvistalog ReadFromLast TRUE SavePos TRUE Query <QueryList> \ <Query Id="0"> \ <Select Path="Security">*[System[(EventID=4768)]]</Select> \ <Select Path="Security">*[System[(EventID=4769)]]</Select> \ <Select Path="Security">*[System[(EventID=4771)]]</Select> \ <Select Path="Security">*[System[(EventID=4624)]]</Select> \ <Select Path="Security">*[System[(EventID=4625)]]</Select> \ <Select Path="Security">*[System[(EventID=4634)]]</Select> \ <Select Path="Security">*[System[(EventID=4647)]]</Select> \ <Select Path="Security">*[System[(EventID=4648)]]</Select> \ <Select Path="Security">*[System[(EventID=4656)]]</Select> \ <Select Path="Security">*[System[(EventID=4719)]]</Select> \ <Select Path="Security">*[System[(EventID=4720)]]</Select> \ <Select Path="Security">*[System[(EventID=4722)]]</Select> \ <Select Path="Security">*[System[(EventID=4723)]]</Select> \ <Select Path="Security">*[System[(EventID=4724)]]</Select> \ <Select Path="Security">*[System[(EventID=4725)]]</Select> \ <Select Path="Security">*[System[(EventID=4726)]]</Select> \ <Select Path="Security">*[System[(EventID=4727)]]</Select> \ <Select Path="Security">*[System[(EventID=4728)]]</Select> \ <Select Path="Security">*[System[(EventID=4729)]]</Select> \ <Select Path="Security">*[System[(EventID=4730)]]</Select> \ <Select Path="Security">*[System[(EventID=4731)]]</Select> \ <Select Path="Security">*[System[(EventID=4732)]]</Select> \ <Select Path="Security">*[System[(EventID=4733)]]</Select> \ <Select Path="Security">*[System[(EventID=4734)]]</Select> \ <Select Path="Security">*[System[(EventID=4735)]]</Select> \ <Select Path="Security">*[System[(EventID=4737)]]</Select> \ <Select Path="Security">*[System[(EventID=4738)]]</Select> \ <Select Path="Security">*[System[(EventID=4739)]]</Select> \ <Select Path="Security">*[System[(EventID=4741)]]</Select> \ <Select Path="Security">*[System[(EventID=4742)]]</Select> \ <Select Path="Security">*[System[(EventID=4743)]]</Select> \ <Select Path="System">*[System[(EventID=7036)]]</Select> \ <Select Path="Application">*[System[(EventID=18454)]]</Select> \ <Select Path="Application">*[System[(EventID=18456)]]</Select> \ </Query> \ </QueryList> </Input> <Output out_eventlog> Module om_udp Host Port 514 Exec $Message = string($sourcename) + ": " + string($eventid) + ": " + $Message; Exec if ($EventID == or $EventID == ) { $SyslogFacilityValue = 18; } \ else { $SyslogFacilityValue = 13; } Exec if ($EventType == 'ERROR' or $EventType == 'AUDIT_FAILURE') { $SyslogSeverityValue = 3; } \ else if ($EventType == 'WARNING') { $SyslogSeverityValue = 4; } \ else if ($EventType == 'INFO' or $EventType == 'AUDIT_SUCCESS') { $SyslogSeverityValue = 5; } Exec to_syslog_bsd(); </Output> <Route eventlog> Path in_eventlog => out_eventlog </Route> 7

9 8 如何使用 NXLOG 管理配置 Windows AD Server 日誌 綠色文字部位請依 OS 環境為 32 位元或 64 位元選擇 NXLOG 正確的安裝路徑本文件範例環境為 64 位元 OS 系統, 選擇 "define ROOT C:\Program Files (x86)\nxlog" 紅色文字部位請輸入 N-Reporter 機器 IP, 本文件範例為輸入 " " 設定範例如下圖 : 5. 啟動 NXLOG 程式 : a. 以系統管理員身份執行 [ 命令提示字元 ] 啟動 NXLOG : [ 開始 ] [ 所有程式 ] [ 應用附屬程式 ] [ 命令提示字元 ], 滑鼠右鍵點 [ 命令提示字 元 ], 選擇 [ 以系統管理員身分執行 ] 命令提示字元輸入 : net stop nxlog net start nxlog # 會看到以下訊息 The nxlog service is starting. The nxlog service was started successfully. b. [ 開始 ] [ 所有程式 ] [ 系統管理工具 ] [ 服務 ] 找到 [ nxlog ], 右鍵點服務 [ nxlog ], 點 [ 啟動 ] 或 [ 重新啟動 ] 8

10 6. 檢查 NXLOG 是否正常啟動 : 開啟檢查 NXLOG 的 log 檔, 檔案路徑為 "C:\Program Files (x86)\nxlog\data\nxlog.log" 若沒有顯示 Error 的訊息, 表示正常啟動 7. 新增 Windows Server 2008 AD Syslog 設備時, 資料格式請選擇 [ Windows AD ] 9

11 10 如何使用 NXLOG 管理配置 Windows AD Server 日誌 1.3 For Windows Server 2012 AD 6. 下載 NXLOG: 前往 URL 請下載網頁中提供的最新版 nxlog-ce-x.x.xxxx.msi, 本例為下載 nxlog-ce msi 6. 安裝 NXLOG: 滑鼠雙點 nxlog-ce msi, 點選 [ Install ], 執行 NXLog 程式安裝步驟 3. 下載設定 Windows 2012 NXLOG 配置檔 nxlog_win2012.conf: 前往 URL: 開啟並編輯此檔案路徑 "C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 NXLOG 配置檔, 將上面的 URL 上的 nxlog_win2k3.conf 檔案裡的設定內容複製, 然後將其貼上並覆蓋 C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 nxlog.conf 檔案中的參數設定後存檔 註 1 : 預設建議使用者採用此設定檔. 此設定只輸出主機稽核 物件存取 帳戶管理等 Eventlog, 會過濾大部分非必要的 Eventlog 雜訊, 減輕 NXLOG 程式對 Windows AD 主機效能的負擔 註 2:32 位元 OS NXLOG 安裝路徑在 "C:\Program Files\nxlog\conf\nxlog.conf" 64 位元 OS NXLOG 安裝路徑在 "C:\Program Files (x86)\nxlog\conf\nxlog.conf" 4. 下載設定 Windows 2012 的 NXLOG nxlog_win2012_all.conf ( 輸出全部 Eventlog) 前往 URL: N-Reporter 提供法規報表統計 Windows AD 所有 Eventlog 使用者若是需要 Windows AD 的法規報表, 請將 nxlog_win2012_all.conf 裡的設定內容複製, 然後將其貼上並覆蓋 C:\Program Files (x86)\nxlog\conf\nxlog.conf" 路徑中的 nxlog.conf 的參數設定後存檔 此設定將會輸出所有 Windows AD 的 Eventlog, 此設定檔會需要 Windows AD 主機配備較高的硬體效能來執行 NXLOG 10

12 ## This is a sample configuration file. See the nxlog reference manual about the ## online at ## Please set the ROOT to the folder your nxlog was installed into, ## otherwise it will not start. #define ROOT C:\Program Files\nxlog define ROOT C:\Program Files (x86)\nxlog Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data LogFile %ROOT%\data\nxlog.log <Extension syslog> Module xm_syslog </Extension> <Input in_eventlog> # For windows 2008/vista/7/8/2012/2012r2 and latter use the following: Module im_msvistalog ReadFromLast TRUE SavePos TRUE Query <QueryList> \ <Query Id="0"> \ <Select Path="Security">*[System[(EventID=4768)]]</Select> \ <Select Path="Security">*[System[(EventID=4769)]]</Select> \ <Select Path="Security">*[System[(EventID=4771)]]</Select> \ <Select Path="Security">*[System[(EventID=4624)]]</Select> \ <Select Path="Security">*[System[(EventID=4625)]]</Select> \ <Select Path="Security">*[System[(EventID=4634)]]</Select> \ <Select Path="Security">*[System[(EventID=4647)]]</Select> \ <Select Path="Security">*[System[(EventID=4648)]]</Select> \ <Select Path="Security">*[System[(EventID=4656)]]</Select> \ <Select Path="Security">*[System[(EventID=4719)]]</Select> \ <Select Path="Security">*[System[(EventID=4720)]]</Select> \ <Select Path="Security">*[System[(EventID=4722)]]</Select> \ <Select Path="Security">*[System[(EventID=4723)]]</Select> \ <Select Path="Security">*[System[(EventID=4724)]]</Select> \ <Select Path="Security">*[System[(EventID=4725)]]</Select> \ <Select Path="Security">*[System[(EventID=4726)]]</Select> \ <Select Path="Security">*[System[(EventID=4727)]]</Select> \ <Select Path="Security">*[System[(EventID=4728)]]</Select> \ <Select Path="Security">*[System[(EventID=4729)]]</Select> \ <Select Path="Security">*[System[(EventID=4730)]]</Select> \ <Select Path="Security">*[System[(EventID=4731)]]</Select> \ <Select Path="Security">*[System[(EventID=4732)]]</Select> \ <Select Path="Security">*[System[(EventID=4733)]]</Select> \ <Select Path="Security">*[System[(EventID=4734)]]</Select> \ <Select Path="Security">*[System[(EventID=4735)]]</Select> \ <Select Path="Security">*[System[(EventID=4737)]]</Select> \ <Select Path="Security">*[System[(EventID=4738)]]</Select> \ <Select Path="Security">*[System[(EventID=4739)]]</Select> \ <Select Path="Security">*[System[(EventID=4741)]]</Select> \ <Select Path="Security">*[System[(EventID=4742)]]</Select> \ <Select Path="Security">*[System[(EventID=4743)]]</Select> \ <Select Path="System">*[System[(EventID=7036)]]</Select> \ <Select Path="Application">*[System[(EventID=18454)]]</Select> \ <Select Path="Application">*[System[(EventID=18456)]]</Select> \ </Query> \ </QueryList> </Input> <Output out_eventlog> Module om_udp Host Port 514 Exec $Message = string($sourcename) + ": " + string($eventid) + ": " + $Message; Exec if ($EventID == or $EventID == ) { $SyslogFacilityValue = 18; } \ else { $SyslogFacilityValue = 13; } Exec if ($EventType == 'ERROR' or $EventType == 'AUDIT_FAILURE') { $SyslogSeverityValue = 3; } \ else if ($EventType == 'WARNING') { $SyslogSeverityValue = 4; } \ else if ($EventType == 'INFO' or $EventType == 'AUDIT_SUCCESS') { $SyslogSeverityValue = 5; } Exec to_syslog_bsd(); </Output> <Route eventlog> Path in_eventlog => out_eventlog </Route> 11

13 12 如何使用 NXLOG 管理配置 Windows AD Server 日誌 綠色文字部位請依 OS 環境為 32 位元或 64 位元選擇 NXLOG 正確的安裝路徑本文件範例環境為 64 位元 OS 系統, 選擇 "define ROOT C:\Program Files (x86)\nxlog" 紅色文字部位請輸入 N-Reporter 機器 IP, 本文件範例為輸入 " " 設定範例如下圖 : 6. 啟動 NXLOG 程式 : a. 以系統管理員身份執行 [ 命令提示字元 ] 啟動 NXLOG : [ 開始 ] [ 所有程式 ] [ 應用附屬程式 ] [ 命令提示字元 ], 滑鼠右鍵點 [ 命令提示字元 ], 點選 [ 以系統管理員身分執行 ] [ Windows PowerShell ] 輸入 : net stop nxlog net start nxlog # 會看到以下訊息 nxlog 服務正在啟動. 12

14 nxlog 服務已經啟動成功. b. [ 開始 ] [ 所有程式 ] [ 系統管理工具 ] [ 服務 ] 找到 [ nxlog ], 右鍵點服務 [ nxlog ], 點 選 [ 啟動 ] 或 [ 重新啟動 ] 6. 檢查 NXLOG 是否正常啟動 : 開啟檢查 NXLOG 的 log 檔, 檔案路徑為 "C:\Program Files (x86)\nxlog\data\nxlog.log" 若沒有顯示 Error 的訊息, 表示正常啟動 13

15 14 如何使用 NXLOG 管理配置 Windows AD Server 日誌 2 Windows 2003 Active Directory Server 稽核設定 本章節主要說明以下操作設定 : 1. 設定網域使用者登入登出的稽核原則 2. 設定共享資料夾權限與稽核原則 Windows 2003 AD Server 登入登出的稽核原則和目錄分享的稽核原則, 預設是關閉的 安裝 NXLOG 的步驟, 詳細請參閱第一章節 2.1 設定 Windows 2003 AD Server 網域使用者登入登出的稽核原則 設定步驟如下 : 1. 以系統管理員權限的 Administrator 登入 Windows 2003 AD Server( 網域控制站 ) 點選 [ 開始 / 所有程式 / 系統管理工具 / 網域控制站安全性原則 ] 註 :[ 系統管理工具 ] 裡的 [ 網域安全性原則 ] 為設定整個網域裡的所有物件 ( 所有使用者與電腦 ), 而網域控制站安全性原則為設定所有網域控制站 (Domain Controllers) 建議將此兩種安全性稽 核原則設定為一致 14

16 2. 前往 [ Windows 設定 / 安全性設定 / 本機原則 / 稽核原則 ] 3. 定義下列的原則設定值 : (1) 稽核登入事件 : 滑鼠雙擊 [ 稽核登入事件 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] 15

17 16 如何使用 NXLOG 管理配置 Windows AD Server 日誌 (2) 稽核帳戶登入事件 : 滑鼠雙擊 [ 稽核帳戶登入事件 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失 敗 ], 設定完成後按 [ 確定 ] 16

18 (3) 稽核物件存取 : 滑鼠雙擊 [ 稽核物件存取 ], 勾選 [ 定義這些原則設定值 ] 成功 : 若欲稽核成功事件的 Log, 請勾選 [ 成功 ] 核取方塊 失敗 : 若欲稽核失敗事件的 Log, 請勾選 [ 失敗 ] 核取方塊 設定完成後按 [ 確定 ] 註 : 若 Windows 2003 Active Directory Server 不做檔案伺服器稽核 (File server audit), 建議不要勾選成功與失敗的設定值, 僅需勾 [ 定義這些原則設定值 ] 即可. 以避免 Windows 稽核多餘且冗長的物件存取事件然後轉換成 syslog 後發送給 N-Reporter, 會影響主機的運作效能 (4) 稽核原則變更 : 滑鼠雙擊 [ 稽核原則變更 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] (5) 稽核帳戶管理 : 滑鼠雙擊 [ 稽核帳戶管理 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] 17

19 18 如何使用 NXLOG 管理配置 Windows AD Server 日誌 2.2 設定共享資料夾權限與稽核原則 設定步驟如下 : 1. 在欲共用的資料夾上點擊滑鼠右鍵, 點選 [ 內容 ] 2. 點選 [ 共用 ] 索引標籤, 點選 [ 共用此資料夾 ] 點選 [ 使用權限 ] 3. 使用者權限設定 : (1) 點選 [ 新增 ], 來新增一使用者 (2) 若要選擇其他網域, 可點選 [ 位置 ] (3) 可於此空白處直接輸入已知的網域使用者帳號後, 按 [ 檢查名稱 ] 檢查存不存在 (4) 若網域使用者帳號存在的話, 按 [ 確定 ] 完成設定 18

20 4. 設定使用者權限 : (1) 點選網域使用者帳號 (2) 勾選允許 [ 完全控制 ] 及 [ 變更 ] 權限 (3) 設定完成後按 [ 確定 ] 5. 安全性設定 : (1) 點選 [ 安全性 ] 索引標籤 (2) 點選 [ 新增 ], 來新增一使用者 (3) 若要選擇其他網域, 可點選 [ 位置 ] (4) 可於此空白處直接輸入已知的網域使用者帳號後, 按 [ 檢查名稱 ] 檢查存不存在 19

21 20 如何使用 NXLOG 管理配置 Windows AD Server 日誌 (5) 若網域使用者帳號存在的話, 按 [ 確定 ] 完成設定 6. 設定使用者權限 : (1) 點選要設定的使用者帳號 (2) 勾選允許 [ 完全控制 ] 權限, 以取得所有權限 (3) 按 [ 套用 ] 及 [ 確定 ], 完成設定 7. 進階安全性設定 : (1) 點選 [ 進階 ] (2) 點選 [ 稽核 ] 索引標籤 (3) 點選 [ 新增 ], 來新增一使用者 (4) 若要選擇其他網域, 可點選 [ 位置 ] (5) 可於此空白處直接輸入已知的網域使用者帳號後, 按 [ 檢查名稱 ] 檢查存不存在 20

22 (6) 若網域使用者帳號存在的話, 按 [ 確定 ] 完成設定 8. 稽核項目設定 : 點選並編輯稽核項目清單內所要的稽核項目 勾選該稽核項目的 [ 成功 ] 及 [ 失敗 ] 的項目, 設定完成後按 [ 確定 ] 21

23 22 如何使用 NXLOG 管理配置 Windows AD Server 日誌 9. 在進階安全性設定完成後, 點選 [ 確定 ] 22

24 在分享資料夾設定完成後, 點選 [ 確定 ] 10. 點選 [ 開始功能表 / 所有程式 / 系統管理工具 / 電腦管理 ] 23

25 24 如何使用 NXLOG 管理配置 Windows AD Server 日誌 11. 點選 [ 系統工具 / 共用資料夾 / 共用 ] 12. 滑鼠左鍵雙擊被設定分享的分享資料夾, 點選 [ 共用使用權限 ] 索引標籤 點選使用者名稱, 勾選允許 [ 完全控制 ] [ 變更 ] 及 [ 讀取 ] 權限, 設定完成後按 [ 確定 ] 24

26 3 Windows 2008 Active Directory Server 稽核設定 本章節主要說明以下操作設定 : 1. 設定網域使用者登入登出的稽核原則 2. 設定共享資料夾權限與稽核原則 Windows 2008 AD Server 登入登出的稽核原則和目錄分享的稽核原則, 預設是關閉的 安裝 NXLOG 的步驟, 詳細請參閱第一章節 3.1 設定網域使用者登入登出的稽核原則 設定步驟如下 : 1. 以系統管理員網域使用者權限的帳戶 Administrator 登入 Windows 2008 AD Server( 網域控制站 ) 開啟群組原則管理 點選 [ 開始功能表 / 執行 ] 輸入 :gpmc.msc, 完成後按 [ 確定 ] 註 : 若出現 Windows 找不到 gpmc.msc 的訊息, 請依下面步驟安裝群組原則管理 (gpmc) 1. 以系統管理員身分開啟命令提示字元 2. 在命令提示字元, 輸入 ServerManagerCmd -install gpmc 3. 安裝完成時請關閉命令提示字元 25

27 26 如何使用 NXLOG 管理配置 Windows AD Server 日誌 2. 以本文件為例子 ( 實際情況請依使用者的環境做調整 ), 點選 [ 樹系 / 網域 /win2k8cht.local/ Default Domain Policy ] 註 : 此步驟展開網域, 會有 [ Default Domain Policy ] ( 預設網域安全性原則 ); 另外展開 Domain Controllers( 網域控制站 ), 會有 [ Default Domain Controllers Policy] ( 預設網域控制站安全性原則 ) 建議將此兩種安全性稽核原則設定為一致 3. 在 Default Domain Policy 點擊滑鼠右鍵, 點選 [ 編輯 ] 26

28 4. 展開 [ 電腦設定 / 原則 / Windows 設定 / 安全性設定 / 本機原則 / 點選稽核原則 ] 27

29 28 如何使用 NXLOG 管理配置 Windows AD Server 日誌 5. 定義下列的原則設定值 : (1) 稽核登入事件 : 滑鼠雙擊 [ 稽核登入事件 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] 28

30 (2) 稽核帳戶登入事件 : 滑鼠雙擊 [ 稽核帳戶登入事件 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失 敗 ], 設定完成後按 [ 確定 ] 29

31 30 如何使用 NXLOG 管理配置 Windows AD Server 日誌 (3) 稽核物件存取 : 滑鼠雙擊 [ 稽核物件存取 ], 勾選 [ 定義這些原則設定值 ] 成功 : 若欲稽核成功事件的 Log, 請勾選 [ 成功 ] 核取方塊 失敗 : 若欲稽核失敗事件的 Log, 請勾選 [ 失敗 ] 核取方塊 設定完成後按 [ 確定 ] 註 : 若 Windows 2008 Active Directory Server 不做檔案伺服器稽核 (File server audit), 建議不要勾選成功與失敗的設定值, 僅需勾選 [ 定義這些原則設定值 ] 即可. 以避免 Windows 稽核多餘且冗長的物件存取事件然後轉換成 syslog 後發送給 N-Reporter, 會影響主機的運作效能 (4) 稽核原則變更 : 滑鼠雙擊 [ 稽核原則變更 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] (5) 稽核帳戶管理 : 滑鼠雙擊 [ 稽核帳戶管理 ], 勾選 [ 定義這些原則設定值 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] 30

32 3.2 設定共享資料夾權限與稽核原則 設定步驟如下 : 1. 在欲共用的資料夾上點擊滑鼠右鍵, 點選 [ 內容 ] 2. 點選 [ 共用 ] 索引標籤, 點選 [ 共用 ] 3. 在檔案分享權限設定中, 點下拉選單至 [ 尋找 ] 31

33 32 如何使用 NXLOG 管理配置 Windows AD Server 日誌 4. 使用者設定 : (1) 若要選擇其他網域, 可點選 [ 位置 ] (2) 可於此空白處直接輸入已知的網域使用者帳號後, 按 [ 檢查名稱 ] 檢查存不存在 (3) 若網域使用者帳號存在的話, 按 [ 確定 ] 完成設定 5. 點選 [ 共用 ] 32

34 6. 等待共用設定完成後, 再按 [ 完成 ] 33

35 34 如何使用 NXLOG 管理配置 Windows AD Server 日誌 7. 安全性設定 : (1) 點選 [ 安全性 ] 索引標籤 (2) 點選 [ 編輯 ] (3) 點選 [ 新增 ] (4) 可於此空白處直接輸入已知的網域使用者帳號後, 按 [ 檢查名稱 ] 檢查存不存在 (5) 若要選擇其他網域, 可點選 [ 位置 ] (6) 設定完成後按 [ 確定 ] 34

36 8. 設定使用者權限 : (1) 點選新增的使用者帳號 (2) 勾選允許 [ 完全控制 ] 權限, 以取得所有權限 (3) 設定完成後按 [ 確定 ] 35

37 36 如何使用 NXLOG 管理配置 Windows AD Server 日誌 9. 進階安全性設定 : (1) 點選 [ 進階 ] (2) 點選 [ 稽核 ] 索引標籤 (3) 點選 [ 編輯 ] (4) 點選 [ 新增 ], 來新增一使用者 (5) 若要選擇其他網域, 可點選 [ 位置 ] (6) 可於此空白處直接輸入已知的網域使用者帳號後, 按 [ 檢查名稱 ] 檢查存不存在 (7) 設定完成後按 [ 確定 ] 36

38 10. 稽核項目設定 : 點選並編輯稽核項目清單內所要的稽核項目 勾選該稽核項目的 [ 成功 ] 及 [ 失敗 ] 的項目, 設定完成後按 [ 確定 ] 11. 在進階安全性設定完成後, 點選 [ 確定 ] 37

39 38 如何使用 NXLOG 管理配置 Windows AD Server 日誌 12. 在分享資料夾設定完成後, 點選 [ 關閉 ] 38

40 13. 點選 [ 開始功能表 / 系統管理工具 / 電腦管理 ] 39

41 40 如何使用 NXLOG 管理配置 Windows AD Server 日誌 14. 點選 [ 系統工具 / 共用資料夾 / 共用 ] 40

42 15. 滑鼠左鍵雙擊被設定分享的分享資料夾, 點選 [ 共用使用權限 ] 索引標籤 點選使用者名稱, 勾 選允許 [ 完全控制 ] [ 變更 ] 及 [ 讀取 ] 權限, 設定完成後按 [ 確定 ] 41

43 42 如何使用 NXLOG 管理配置 Windows AD Server 日誌 4 Windows 2012 Active Directory Server 稽核設定 本章節主要說明以下操作設定 : 1. 設定網域使用者登入登出的稽核原則 2. 設定共享資料夾權限與稽核原則 Windows 2012 AD Server 登入登出的稽核原則和目錄分享的稽核原則, 預設是關閉的 安裝 NXLOG 的步驟, 詳細請參閱第一章節 4.1 設定網域使用者登入登出的稽核原則 設定步驟如下 : 1. 以系統管理員網域使用者權限的帳戶 administrator 登入 Windows 2012 Active Directory Server( 網域控制站 ) 開啟群組原則管理 : 點選 [ Windows PowerShell ], 輸入 :gpmc.msc, 完成後按 [ Enter ] 42

44 2. 以本文件為例子 ( 實際情況請依使用者的環境做調整 ), 點選 [ 樹系 / 網域 /NPWin2012r2.local / Domain Controllers / Default Domain Controllers Policy ] 3. 滑鼠右鍵點選 [ Default Domain Controllers Policy ], 按 [ 編輯 ], 開啟 [ 群組原則管理編輯器 ] 註 : 此步驟展開網域, 會有 [ Default Domain Policy ] ( 預設網域安全性原則 ); 另外展開 Domain Controllers( 網域控制站 ), 會有 [ Default Domain Controllers Policy] ( 預設網域控制站安全性原則 ) 建議將此兩種安全性稽核原則設定為一致 43

45 44 如何使用 NXLOG 管理配置 Windows AD Server 日誌 4. 點選 [ 電腦設定 / 原則 / Windows 設定 / 安全性設定 / 本機原則 / 稽核原則 ] 5. 定義下列的原則設定值 : (1) 稽核登入事件 : 滑鼠雙擊 [ 稽核登入事件 ], 勾選 [ 定義這些原則設定 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] 44

46 (2) 稽核帳戶登入事件 : 滑鼠雙擊 [ 稽核帳戶登入事件 ], 勾選 [ 定義這些原則設定 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] 45

47 46 如何使用 NXLOG 管理配置 Windows AD Server 日誌 (3) 稽核原則變更 : 雙擊 [ 稽核原則變更 ], 勾選 [ 定義這些原則設定 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] (4) 稽核帳戶管理 : 雙擊 [ 稽核帳戶管理 ], 勾選 [ 定義這些原則設定 ], 再勾選 [ 成功 ] 及 [ 失敗 ], 設定完成後按 [ 確定 ] (5) 稽核物件存取 : 滑鼠雙擊 [ 稽核物件存取 ], 勾選 [ 定義這些原則設定 ] 成功 : 若欲稽核成功事件的 Log, 請勾選 [ 成功 ] 核取方塊 失敗 : 若欲稽核失敗事件的 Log, 請勾選 [ 失敗 ] 核取方塊 設定完成後按 [ 確定 ] 註 : 若 Windows 2012 Active Directory Server 不做檔案伺服器稽核 (File server audit), 建議不要勾選成功與失敗的設定值, 僅需勾 [ 定義這些原則設定值 ] 即可. 以避免 Windows 稽核多餘且冗長的物件存取事件然後轉換成 syslog 後發送給 N-Reporter, 會影響主機的運作效能 46

48 4.2 設定共享資料夾權限與稽核原則 設定步驟如下 : 1. 點選 [ 伺服器管理員 / 檔案和存放服務 / 共用 / 工作 / 新增共用...], 開啟新增共用精靈 47

49 48 如何使用 NXLOG 管理配置 Windows AD Server 日誌 2. 滑鼠左點 [ SMB 共用 - 快速 ], 左點 [ 下一步 ] 3. 左點 [ 輸入自訂路徑 ], 本例為輸入 "C:\share_folder", 左點 [ 下一步 ] 48

50 4. 在共用名稱欄位輸入所要共用的資料夾的名稱, 本例為輸入 [ share_folder ], 然後按 [ 下一 步 ] 5. 勾選 [ 啟用存取型列舉 ], 左點 [ 下一步 ] 49

51 50 如何使用 NXLOG 管理配置 Windows AD Server 日誌 6. 點選 [ 自訂權限... / 稽核 / 新增 ] 50

52 7. 左點 [ 選取一個主體 ], 如果欲稽核所有使用者, 在物件名稱欄位的空白處輸入 "everyone" 後, 點選檢查名稱, 按 [ 確定 ] ( 註 : 若要選擇其他網域, 可點選 [ 位置 ]) 8. 類型下拉選 [ 全部 ], 基本權限勾選 [ 完全控制 ], 然後按左點 [ 確定 ] 51

53 52 如何使用 NXLOG 管理配置 Windows AD Server 日誌 9. 若稽核設定完成後, 按 [ 確定 ] 按 [ 下一步 ] 按 [ 建立 ] / [ 關閉 ], 完成設定 52

54 連絡資訊 N-Partner 公司連絡方式 : TEL: FAX: 有關技術問題請洽 : support@npartnertech.com Skype:support@npartnertech.com 有關業務相關問題請洽 : sales@npartnertech.com 53

0 如如何使用 NXLOG 管理配置 Windows Server 日誌 如何使用 NXLOG 管理配置 Windows Server 日誌 V ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologies Co

0 如如何使用 NXLOG 管理配置 Windows Server 日誌 如何使用 NXLOG 管理配置 Windows Server 日誌 V ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologies Co 0 如如何使用 NXLOG 管理配置 Windows Server 日誌 如何使用 NXLOG 管理配置 Windows Server 日誌 V 1.1.3 ( 繁體 ) 0 (01-03-01-017) 2015/06/23 前言 本文件描述 N-Reporter 使用者如何使用 Open Source 工具 NXLOG 管理配置 Windows Server 2003/2008/2012 的日誌

More information

前言 此文件主要描述如何使用 N-Reporter 接收 SQL Server 的 log 首先必須開啟 SQL Server 的 C2 audit mode 功能, 透過 C2 audit mode, 系統將 SQL Server 的 log 送至 Windows 的 eventlog 接著利用

前言 此文件主要描述如何使用 N-Reporter 接收 SQL Server 的 log 首先必須開啟 SQL Server 的 C2 audit mode 功能, 透過 C2 audit mode, 系統將 SQL Server 的 log 送至 Windows 的 eventlog 接著利用 0 如何管理 SQL Server 登入稽核 V 006 0 2017/09/15 前言 此文件主要描述如何使用 N-Reporter 接收 SQL Server 的 log 首先必須開啟 SQL Server 的 C2 audit mode 功能, 透過 C2 audit mode, 系統將 SQL Server 的 log 送至 Windows 的 eventlog 接著利用 NXLOG 將 eventlog

More information

前言 此文件主要描述如何使用 N-Reporter 接收 SQL Server 的 log 首先必须开启 SQL Server 的 C2 audit mode 功能, 透过 C2 audit mode, 系统将 SQL Server 的 log 送至 Windows 的 eventlog 接着利用

前言 此文件主要描述如何使用 N-Reporter 接收 SQL Server 的 log 首先必须开启 SQL Server 的 C2 audit mode 功能, 透过 C2 audit mode, 系统将 SQL Server 的 log 送至 Windows 的 eventlog 接着利用 0 V 1.1.5 ( 简体 ) 0 (01-01-02-006) 2014/10/02 前言 此文件主要描述如何使用 N-Reporter 接收 SQL Server 的 log 首先必须开启 SQL Server 的 C2 audit mode 功能, 透过 C2 audit mode, 系统将 SQL Server 的 log 送至 Windows 的 eventlog 接着利用 NXLOG

More information

前言 本文件描述 N-Reporter 使用者如何使用 Open Source 工具 NXLOG 管理配置 Windows Server 2003/2008/2012 的日志 (Eventlog), 将事件 (Event) 转成 syslog, 再转发到 N-Reporter 做正规化 审核与分析

前言 本文件描述 N-Reporter 使用者如何使用 Open Source 工具 NXLOG 管理配置 Windows Server 2003/2008/2012 的日志 (Eventlog), 将事件 (Event) 转成 syslog, 再转发到 N-Reporter 做正规化 审核与分析 0 如何使用 NXLOG 管理配置 Windows Server 日志 V 1.1.3 ( 简体 ) 0 (01-01-02-017) 2015/06/23 前言 本文件描述 N-Reporter 使用者如何使用 Open Source 工具 NXLOG 管理配置 Windows Server 2003/2008/2012 的日志 (Eventlog), 将事件 (Event) 转成 syslog,

More information

使用者如何管理 Exchange Server 郵件追蹤記錄稽核 V 005 ( 繁體 ) 2017/09/14

使用者如何管理 Exchange Server 郵件追蹤記錄稽核 V 005 ( 繁體 ) 2017/09/14 使用者如何管理 Exchange Server 郵件追蹤記錄稽核 V 005 ( 繁體 ) 2017/09/14 前言 本文件描述 N-Reporter 使用者如何管理 Exchange Server 郵件追蹤 (Message Tracking) 記錄稽核 第一步先配置 Exchange 的郵件追蹤記錄 第二步利用 Open Source 工具 NXLOG Community Edition( 簡稱

More information

前言 這份文件主要描述如何使用 N-Reporter 管理 IIS 稽核 第一跟第二章節分為 Windows 2003 安裝 IIS 6 環境與 Windows 2008 安裝 IIS 7 環境兩個部份分別說明如何設定 IIS 第三章節為配置 NXLOG, 將 IIS 稽核 log 轉成 syslo

前言 這份文件主要描述如何使用 N-Reporter 管理 IIS 稽核 第一跟第二章節分為 Windows 2003 安裝 IIS 6 環境與 Windows 2008 安裝 IIS 7 環境兩個部份分別說明如何設定 IIS 第三章節為配置 NXLOG, 將 IIS 稽核 log 轉成 syslo 如何管理 IIS 稽核 0 如何管理 IIS 稽核 V 011 ( 繁體 ) 0 2017/9/18 前言 這份文件主要描述如何使用 N-Reporter 管理 IIS 稽核 第一跟第二章節分為 Windows 2003 安裝 IIS 6 環境與 Windows 2008 安裝 IIS 7 環境兩個部份分別說明如何設定 IIS 第三章節為配置 NXLOG, 將 IIS 稽核 log 轉成 syslog

More information

如何管理 IIS 稽核 0 如何管理 IIS 审核 V ( 简体 ) 0 ( ) 2017/4/17

如何管理 IIS 稽核 0 如何管理 IIS 审核 V ( 简体 ) 0 ( ) 2017/4/17 0 如何管理 IIS 审核 V 1.1.10 ( 简体 ) 0 (01-01-02-003) 2017/4/17 前言 这份文件主要描述如何使用 N-Reporter 管理 IIS 审核 第一步分为 Windows 2003 安装 IIS 6 环境与 Windows 2008 安装 IIS 7 环境两个部份分别说明如何设定 IIS 第二步为配置 NXLOG, 将 IIS 稽核 log 转成 syslog

More information

前言 本文件描述如何使用 N-Reporter 接收 MySQL Audit syslog 先介紹如何開啟 MySQL general log 功能, 並將 general log 寫入系統日誌 syslog 中, 然後利用 Linux 的 software Syslogd Rsyslog 或 Sy

前言 本文件描述如何使用 N-Reporter 接收 MySQL Audit syslog 先介紹如何開啟 MySQL general log 功能, 並將 general log 寫入系統日誌 syslog 中, 然後利用 Linux 的 software Syslogd Rsyslog 或 Sy 0 V 1.1.4 ( 繁體 ) 0 (01-01-01-007) 2014/12/04 前言 本文件描述如何使用 N-Reporter 接收 MySQL Audit syslog 先介紹如何開啟 MySQL general log 功能, 並將 general log 寫入系統日誌 syslog 中, 然後利用 Linux 的 software Syslogd Rsyslog 或 Syslog-ng

More information

0 配置 Host MIB 设备 V ( 简体版 ) 0 Update: 2016/1/30

0 配置 Host MIB 设备 V ( 简体版 ) 0 Update: 2016/1/30 0 配置 Host MIB 设备 V 1.1.2 ( 简体版 ) 0 Update: 2016/1/30 前言 N-Reporter 支持 Host Resource MIB 监控主机 (Host) 状态, 本文件描述 N-Reporter 用户如何配置 Host MIB 设备 文件章节如下 : 1. 配置 Windows Server 2003... 2 1-1.Windows Server 2003

More information

0 如何管理 MySQL 稽核 如何管理 MySQL 稽核 V 005 ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologies Co. 2017/09/15

0 如何管理 MySQL 稽核 如何管理 MySQL 稽核 V 005 ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologies Co. 2017/09/15 0 V 005 ( 繁體 ) 0 2017/09/15 前言 本文件描述如何使用 N-Reporter 接收 MySQL Audit syslog 先介紹如何開啟 MySQL general log 功能, 並將 general log 寫入系統日誌 syslog 中, 然後利用 Linux 的 software Syslogd Rsyslog 或 Syslog-ng 將 syslog 發送至 N-Reporter

More information

前言 本文件描述 N-Reporter ESX/ESXi 虛擬機環境如何配置 Probe 功能 第一章說明如何配置 N-Probe 虛擬機, 將來自交換機的 mirror 流量轉成 NetFlow, 再轉發到 N-Reporter 分析統計 第二章說明配置 N-Reporter 虛擬機的 Probe

前言 本文件描述 N-Reporter ESX/ESXi 虛擬機環境如何配置 Probe 功能 第一章說明如何配置 N-Probe 虛擬機, 將來自交換機的 mirror 流量轉成 NetFlow, 再轉發到 N-Reporter 分析統計 第二章說明配置 N-Reporter 虛擬機的 Probe 0 V 1.1.3 ( 繁體 ) 0 (01-03-01-018) 2016/06/21 前言 本文件描述 N-Reporter ESX/ESXi 虛擬機環境如何配置 Probe 功能 第一章說明如何配置 N-Probe 虛擬機, 將來自交換機的 mirror 流量轉成 NetFlow, 再轉發到 N-Reporter 分析統計 第二章說明配置 N-Reporter 虛擬機的 Probe 功能, 將來自交換機

More information

SyncMail AJAX Manual

SyncMail AJAX Manual HKBN Cloud Mail on Mobile How to setup POP3 and IMAP (Version 1.1) 1 Table of Contents HKBN Cloud Mail 用戶設定 Android 手冊 HKBN Cloud Mail Android Setup... 3 Android 2.X... 3 Android 3.x - 4.X... 6 HKBN Cloud

More information

SSL 數位憑證 OpenVPN 安裝說明

SSL 數位憑證 OpenVPN 安裝說明 SSL 數位憑證 OpenVPN 安裝說明 目錄 一 產生憑證請求檔... 1 二 憑證安裝... 3 1. 安裝憑證 - Server 端... 3 [ CentOS or RedHat ]... 3 [ Windows ]... 3 2. 安裝憑證 - Client 端... 4 [ CentOS or RedHat ]... 4 [ Windows ]... 4 三 憑證匯出 ( 伺服器憑證匯出

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

The golden pins of the PCI card can be oxidized after months or years

The golden pins of the PCI card can be oxidized after months or years Q. 如何在 LabWindows/CVI 編譯 DAQ Card 程式? A: 請參考至下列步驟 : 步驟 1: 安裝驅動程式 1. 安裝 UniDAQ 驅動程式 UniDAQ 驅動程式下載位置 : CD:\NAPDOS\PCI\UniDAQ\DLL\Driver\ ftp://ftp.icpdas.com/pub/cd/iocard/pci/napdos/pci/unidaq/dll/driver/

More information

IT Essentials 5

IT Essentials 5 5.0 5.3.7.2 實驗 在 Windows 中使用 CLI 命令 簡介 列印並完成本實驗 本實驗將在 Windows 7/Vista/XP 中使用 Windows CLI 命令管理資料夾 檔案和程式 推薦設備本練習需要以下設備 : 執行 Windows 7 Windows Vista 或 Windows XP 的電腦 步驟 1 以管理者身份登錄電腦 註 : 如果使用 Administrator

More information

untitled

untitled MySQL DBMS under Win32 Editor: Jung Yi Lin, Database Lab, CS, NCTU, 2005/09/16 MySQL 料 理 MySQL 兩 Commercial License 利 GPL MySQL http://www.mysql.com Developer Zone http://www.mysql.com Download 連 連 MySQL

More information

(Microsoft Word - wes _\246p\246\363\250\317\245\316LED\277O\305\343\245\334\252\254\272A.doc)

(Microsoft Word - wes _\246p\246\363\250\317\245\316LED\277O\305\343\245\334\252\254\272A.doc) 作者 Amber 版本 1.0.0 日期 2012/04/25 頁數 1/7 如何使用 LED 燈顯示狀態? 適用於 : 平台 作業系統版本 XPAC utility 版本 XP-8000 系列 N/A N/A XP-8000-Atom 系列 WES2009 所有版本 N/A: Not applicable to this platform and OS. 注意! 欲變更系統的任何設定之前, 請先關閉

More information

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8 Smart TPM Rev. 1001 Smart TPM Ultra TPM Smart TPM TPM...3 1. BIOS... 3 2. Infineon TPM Smart TPM... 4 2.1. Infineon TPM...4 2.2. Smart TPM...4 3. TPM... 5 3.1. Smart TPM TPM...5 3.2. Advanced Mode...8

More information

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp 01 1.6 Spyder Anaconda Spyder Python Spyder Python Spyder Spyder 1.6.1 Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Spyder Python File

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

Outlook 2007 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365

Outlook 2007 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365 Outlook 2007 設定說明 OfficeMail 企業郵件 / 虛擬主機郵件 / Office 365 版權及商標聲明 Cloudmax 匯智提供用戶商務用郵件服務, 本文件由 Cloudmax 匯智製作, 用於教導用戶 進行郵件服務相關設定, 內容中所使用的郵件工具非為 Cloudamx 匯智設計及擁有, 若對 程式資訊有疑問, 請洽程式提供商 本文件所引用之各商標及商品名稱分屬其合法註冊公司所有,

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

Outlook 2010 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365

Outlook 2010 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365 Outlook 2010 設定說明 OfficeMail 企業郵件 / 虛擬主機郵件 / Office 365 版權及商標聲明 Cloudmax 匯智提供用戶商務用郵件服務, 本文件由 Cloudmax 匯智製作, 用於教導用戶 進行郵件服務相關設定, 內容中所使用的郵件工具非為 Cloudamx 匯智設計及擁有, 若對 程式資訊有疑問, 請洽程式提供商 本文件所引用之各商標及商品名稱分屬其合法註冊公司所有,

More information

文件章節如下 : 連絡信息 下載 N-Reporter VMware Image 前置準備 安裝流程 ESXi 部署 OVA Trouble Shooting...11 連絡信息 N-Partner 公司連絡方式 : TEL:

文件章節如下 : 連絡信息 下載 N-Reporter VMware Image 前置準備 安裝流程 ESXi 部署 OVA Trouble Shooting...11 連絡信息 N-Partner 公司連絡方式 : TEL: 0 VMware ESX/ESXi 配置 N-Reporter 虛擬機器 V 012 ( 繁體 ) 0 2018/02/21 文件章節如下 : 連絡信息...1 1. 下載 N-Reporter VMware Image...2 2. 前置準備...2 3. 安裝流程...3 4.ESXi 部署 OVA Trouble Shooting...11 連絡信息 N-Partner 公司連絡方式 : TEL:

More information

Oxford iSolution下載及安裝指南

Oxford iSolution下載及安裝指南 Oxford isolution 下載及安裝指南 Download and Installation Guide 系統要求 System Requirements... 2 Oxford isolution 安裝步驟 Windows 個人電腦 Oxford isolution Installation Steps For Windows PCs... 3 Oxford isolution 安裝步驟

More information

封面-12

封面-12 第十二章 701Client TECHNOLOGY CO.,LTD. 701Client 701Server 701Client "701Client", 12-1 :supervisor :supervisor : 1. : 00~99 100 2. : 00~63 ( 63 / / ) 3. : 18 9 4. : 18 9 5. 12-2 TECHNOLOGY CO.,LTD. 701Client

More information

使用手冊

使用手冊 使用手冊 版權所有 2013 年 Microtek International, Inc. 保留所有權利 商標 Microtek MII MiiNDT ScanWizard Microtek International, Inc. Windows Microsoft Corporation 重要須知 Microtek Microtek Windows Microsoft Windows I49-004528

More information

0 VMware ESX/ESXi 配置 N-Reporter 虛擬機器 V 016 ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologies Co. 2018/08/30

0 VMware ESX/ESXi 配置 N-Reporter 虛擬機器 V 016 ( 繁體 ) 0 Copyright All rights are reserved by N-Partner Technologies Co. 2018/08/30 0 VMware ESX/ESXi 配置 N-Reporter 虛擬機器 V 016 ( 繁體 ) 0 2018/08/30 文件章節如下 : 連絡信息...1 1. 下載 N-Reporter VMware Image...2 2. 前置準備...3 3. 安裝流程...4 4. ESXi 部署 OVA Trouble Shooting...12 連絡信息 N-Partner 公司連絡方式 : TEL:

More information

ansoft_setup21.doc

ansoft_setup21.doc Cadence Cadence Cadence 1000 (1) (2) CIC (3).. CIC Cadence (a) CIC license license server license CIC license CIC license (b) 2000 Cadence license 92 1 1 license server CIC 92 1 1 Cadence license licenser

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

Please choose the VBIOS update guide according to your language. 請依據您的語言選擇以下的 VBIOS 更新指南 请依据您的语言选择以下的 VBIOS 更新指南 English 繁體中文 简体中文 1

Please choose the VBIOS update guide according to your language. 請依據您的語言選擇以下的 VBIOS 更新指南 请依据您的语言选择以下的 VBIOS 更新指南 English 繁體中文 简体中文 1 VBIOS Update SOP VBIOS 更新指南 Prepared by Revision: 1.3 Date: 2016 / 07 / 28 Please choose the VBIOS update guide according to your language. 請依據您的語言選擇以下的 VBIOS 更新指南 请依据您的语言选择以下的 VBIOS 更新指南 English 繁體中文

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

穨UPSentry_SC_.PDF

穨UPSentry_SC_.PDF 3Phase UPSentry For: Windows 95/98/Me Windows NT40/2000/XP Table of Contents Chapter 0 Getting Started 0-1 0-1 0-1 0-2 Chapter 1 3Phase UPSentry 1-1 1-1 1-1 1-1 1-3 Chapter 2 3Phase UPSentry 2-1 Chapter

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

C35_RG_E.book

C35_RG_E.book 快 速 指 南 . 目 录 1 简 介...1-1 简 介...1-2 文 档 CD/DVD 简 介...1-2 可 用 的 功 能...1-3 打 印 操 作...1-3 复 印 操 作...1-3 扫 描 操 作...1-3 传 真 操 作...1-3 控 制 面 板...1-4 帮 助 功 能...1-5 2 更 换 耗 材...2-1 更 换 耗 材...2-2 更 换 碳 粉 盒...2-2

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

untitled

untitled TS-411U Turbo Server TS-411U Turbo Server ( : 1.0.0) 2005 2005 12 8-2 - 1. 2. TS-411U Turbo Server - 3 - ... 7 1.1... 7 1.2... 8 1.3... 9 TS-411U... 10 2.1... 10 2.2... 14 2.3 TS-411U... 15 LCD... 17...

More information

第三篇 第 10 章 - 管理者登入第 11 章 - 更改網路商店 Logo 第 12 章 - 系統設定第 13 章 - 商品上架第 14 章 - 付款方式設定第 15 章 - 出貨方式設定第 16 章 - 特價商品 oscommerce 103

第三篇 第 10 章 - 管理者登入第 11 章 - 更改網路商店 Logo 第 12 章 - 系統設定第 13 章 - 商品上架第 14 章 - 付款方式設定第 15 章 - 出貨方式設定第 16 章 - 特價商品 oscommerce 103 第三篇 第 10 章 - 管理者登入第 11 章 - 更改網路商店 Logo 第 12 章 - 系統設定第 13 章 - 商品上架第 14 章 - 付款方式設定第 15 章 - 出貨方式設定第 16 章 - 特價商品 103 電子商務網站經營與管理 10-11 - Logo 12-13 - 14-15 - 16 - 一 情境描述 - 店主的心聲 1. 2. / 104 3. 第三篇網路商店新店開幕

More information

PowerPoint 簡報

PowerPoint 簡報 Update:2019/02 憑證小幫手操作說明 1 憑證小幫手簡介 憑證小幫手 為 AP 版的憑證中心, 提供使用者在 Windows 與 MAC 平台進行 ( 電腦版 ) 憑證申請與更新 憑證匯入 憑證匯出 檢查憑證 電腦檢測 操作說 明 公告等功能, 以便使用者對憑證進行相關的管理 請點選 Windows 版 - 操作說明 Mac 版 - 操作說明 2 憑證小幫手操作說明 Windows 版

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information

ebook

ebook 2 2 P D C S a m b a Windows NT P D C S a m b a ( 2. 0 ) Windows NT P D C ( S a m b a - n t d o m @ S a m b a. o rg ) U N I X P D C U N I X Samba PDC N I S i n t e l S p a r c S a m b a Windows NT PDC 21

More information

簡報題目

簡報題目 政府組態基準 (GCB) 實作研習活動 ( 部署實務 ) 國家資通安全會報技術服務中心 大綱 群組原則說明 GCB 導入流程 恢復原始設定之方式 SCM 操作說明 調整 GCB 設定值 問題與討論 1 群組原則說明 目的 群組原則的基本說明 (1/2) 管理使用者和電腦的一般性功能與安全性管理 軟體部署 Service Pack 修正程式 應用程式 強制實施安全性的設定 確保有相同的操作介面 3 種類

More information

實驗 使用 IPv4 和 IPv6 計算摘要路由 拓樸 位址分配表 子網 IPv4 位址 IPv6 位址 HQ 的 LAN / :DB8:ACAD:E::/64 HQ 的 LAN / :DB8:ACAD:F::/64 EAS

實驗 使用 IPv4 和 IPv6 計算摘要路由 拓樸 位址分配表 子網 IPv4 位址 IPv6 位址 HQ 的 LAN / :DB8:ACAD:E::/64 HQ 的 LAN / :DB8:ACAD:F::/64 EAS 拓樸 位址分配表 子網 IPv4 位址 IPv6 位址 HQ 的 LAN1 192.168.64.0/23 2001:DB8:ACAD:E::/64 HQ 的 LAN2 192.168.66.0/23 2001:DB8:ACAD:F::/64 EAST 的 LAN1 192.168.68.0/24 2001:DB8:ACAD:1::/64 EAST 的 LAN2 192.168.69.0/24 2001:DB8:ACAD:2::/64

More information

一、考試宗旨:考選風險管理人才,提升風險管理水準。

一、考試宗旨:考選風險管理人才,提升風險管理水準。 101 年 第 1 次 風 險 管 理 師 考 試 簡 章 一 考 試 宗 旨 : 考 選 風 險 管 理 人 才, 提 升 風 險 管 理 水 準 二 考 試 類 別 :( 一 ) 個 人 風 險 管 理 師 ;( 二 ) 企 業 風 險 管 理 師 可 同 時 報 考 三 考 試 科 目 :( 參 考 用 書 請 詳 閱 簡 章 第 二 頁 ) ( 一 ) 個 人 風 險 管 理 師 考 試 (

More information

未命名 -1

未命名 -1 BV8188M 使 用 说 明 INSTRUCTIONS 使 用 之 前 请 仔 细 阅 读 此 手 册 Please read before using this manual 深 圳 市 碧 维 视 科 技 有 限 公 司 2013 年 碧 维 视 印 刷, 版 权 所 有, 翻 版 必 究, 本 手 册 内 所 有 图 文, 未 经 授 权, 严 谨 与 任 何 方 式 之 全 面 或 部 分

More information

Microsoft Word - 事務培訓招生簡章(含報名表).doc

Microsoft Word - 事務培訓招生簡章(含報名表).doc 公 寓 大 廈 管 理 服 務 人 培 訓 講 習 招 生 簡 章 委 託 單 位 : 內 政 部 營 建 署 受 託 單 位 : 中 華 民 國 物 業 管 理 經 理 人 協 會 委 託 期 間 : 即 日 起 至 105 年 6 月 30 日 內 政 部 營 建 署 委 託 中 華 民 國 物 業 管 理 經 理 人 協 會 辦 理 事 務 管 理 公 寓 大 廈 技 術 服 務 人 員 培

More information

1. Install the software Note: You should logon with administrator privileges to Windows 7, Vista or XP in order to install the software properly. You

1. Install the software Note: You should logon with administrator privileges to Windows 7, Vista or XP in order to install the software properly. You i-key 2032 SafeNet Authentication Client 8.0 User Manual (SCB) Operating System Requirement: Windows XP Windows Vista Windows 7 Content 1. Install the software 1.1. Install from CD-Rom or, 1.2. Install

More information

HP 3PAR StoreServ 7000 Storage SmartStart 1.3 软件发行说明

HP 3PAR StoreServ 7000 Storage SmartStart 1.3 软件发行说明 HP 3PAR StoreServ 7000 SmartStart 1.3 软 件 发 行 说 明 摘 要 本 文 档 中 的 信 息 可 供 HP 客 户 合 作 伙 伴 和 HP 现 场 代 表 使 用 这 些 发 行 说 明 描 述 了 HP 3PAR SmartStart 1.3 软 件 中 的 功 能 修 改 和 问 题 HP 部 件 号 :QR482-96643 出 版 日 期 :2014

More information

X6-04_How_do_I_write_a_com_port_communicate_program_of_XPAC_tc

X6-04_How_do_I_write_a_com_port_communicate_program_of_XPAC_tc Author WeiKai Version 1.0.0 Date 2013/4/14 Page 1/11 我如何在 XPAC 上建立一個 COM port 通訊程式 Applies to: Platform OS version XPAC utility version XPAC series All versions (WinCE6) All versions XPAC SDK 提供 XPAC 結合

More information

1 IT IT IT IT Virtual Machine, VM VM VM VM Operating Systems, OS IT

1 IT IT IT IT Virtual Machine, VM VM VM VM Operating Systems, OS IT 1 IT IT IT IT Virtual Machine, VM VM VM VM Operating Systems, OS IT Chapter 1 了解虛擬化技術種類 硬體 / 平台 / 伺服器虛擬化 VM VM VM CPU Hypervisor VMM Virtual Machine Manager VM Host OS VM VM Guest OS Host OS CPU VM Hyper-V

More information

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se 1 SQL Server 2005 DBA Microsoft SQL Server SQL ServerSQL Server SQL Server SQL Server SQL Server SQL Server 2005 SQL Server 2005 SQL Server 2005 o o o SQL Server 2005 1 SQL Server 2005... 3 2 SQL Server

More information

发行说明, 7.0.1 版

发行说明, 7.0.1 版 发 行 说 明 Websense Web Security Websense Web Filter 7.0.1 版 本 版 本 的 新 特 点 Websense Web Security 和 Websense Web Filter 的 7.0.1 版 本 均 已 本 地 化 为 以 下 语 言 : 法 语 德 语 意 大 利 语 日 语 葡 萄 牙 语 简 体 中 文 西 班 牙 语 繁 体 中 文

More information

輕鬆學 Dreamweaver CS5 網頁設計..\Example\Ch0\ \.html..\example\ch0\ \mouse.txt..\example\ch0\ \ _Ok.html 學習重點 JavaScript 複製程式碼 mouse.txt Ctrl+C Ctrl+C 0-4

輕鬆學 Dreamweaver CS5 網頁設計..\Example\Ch0\ \.html..\example\ch0\ \mouse.txt..\example\ch0\ \ _Ok.html 學習重點 JavaScript 複製程式碼 mouse.txt Ctrl+C Ctrl+C 0-4 JAVA Extension 0..\Example\Ch0\ \ T.html..\Example\Ch0\ \ T.txt T.txt..\Example\Ch0\ \ T_Ok.html 提示 :. Marquee Marquee Font Color #FFFFFF BG Color #867bf Width 90 Height 50. T.txt Ctrl+C your scrolling

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

穨IC-1000

穨IC-1000 IC-1000 LEDOMARS Information Coporation :(02)27913828 :(02)27945895 (04)2610628 (04)2650852 (07)3897016 (07)3897165 http://www.ledomars.com.tw 1 1. IC-1000 2. IC-1000 LED : ERROR LNK/ACT PWR TEST PWR(Power)

More information

PHOTON Web Hosting

PHOTON Web Hosting PHOTON Web Hosting User Manual for Email Account Management and Setup Photon International Limited Website: http://webhosting.photon.com.hk e: 2012-04-01 Page 2 of 12 Table of Content TABLE OF CONTENT...

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

簡報題目

簡報題目 政府組態基準 (GCB) 實作研習活動 ( 部署教學 ) 行政院國家資通安全會報技術服務中心 大綱 群組原則說明 GCB 導入流程 恢復原始設定之方式 SCM 操作說明 調整 GCB 設定值 RHEL 5 組態設定方式 問題與討論 1 群組原則說明 2 目的 群組原則的基本說明 (1/2) 管理使用者和電腦的一般性功能與安全性管理 軟體部署 Service Pack 修正程式 應用程式 強制實施安全性的設定

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

一 安裝前準備 Windows sever 環境 IP: 主機名稱 :winad 網域 :aaa.bbb.edu.tw FQDN:winad. aaa.bbb.edu.tw CentOS7 環境 IP: 主機名稱 :centos 網域 :aaa.bbb

一 安裝前準備 Windows sever 環境 IP: 主機名稱 :winad 網域 :aaa.bbb.edu.tw FQDN:winad. aaa.bbb.edu.tw CentOS7 環境 IP: 主機名稱 :centos 網域 :aaa.bbb 漫遊連線機制建置說明手冊 Freeradius+ Active Directory 一 安裝前準備 Windows sever 環境 IP:192.168.1.10 主機名稱 :winad 網域 :aaa.bbb.edu.tw FQDN:winad. aaa.bbb.edu.tw CentOS7 環境 IP:192.168.1.20 主機名稱 :centos 網域 :aaa.bbb.edu.tw FQDN:centos.

More information

Pro/ENGINEER 訓練教材 ( 曲面 ) 目錄 1. Creo2.0 設定工作目錄 圖形

Pro/ENGINEER 訓練教材 ( 曲面 ) 目錄 1. Creo2.0 設定工作目錄 圖形 德霖技術學院機械工程系 Pro/Engineer 訓練教材 ( 曲面 ) 吳邦彥編著 中華民國 102 年 09 月 1 Pro/ENGINEER 訓練教材 ( 曲面 ) 目錄 1. Creo2.0 設定工作目錄 --------------------------------------------------------3 2. 圖形 --------------------------------------------------------------------------------8

More information

<55342D323637CBB5C3F7CAE92E786C73>

<55342D323637CBB5C3F7CAE92E786C73> U4-267 / 1 U4-267 / : CF PowerPoint, TCP/IP Internet Explorer 2 ..2..3..4..5..5..5..9 PC...10 11 12 14 14....15....15....16....16....17....17....18....18....20 23....27 27 PC...27....28 3 CF SanDisk CompactFlash)

More information

cosa Quick Start Manual

cosa Quick Start Manual 小 心 SmartStor Cloud 網 路 儲 存 體 機 箱 內 的 電 子 元 件 易 受 靜 電 放 電 (ESD) 的 影 響, 因 而 受 到 損 壞 處 理 SmartStor Cloud 裝 置 或 其 子 配 件 時, 應 隨 時 遵 守 預 防 措 施 警 告! 風 扇 含 有 危 險 的 活 動 零 件 確 保 手 指 及 其 他 身 體 部 位 遠 離 風 扇 小 心 如

More information

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG --------------------------------------------TABLE OF CONTENTS------------------------------------------

More information

前言 本文件描述如何使用 N-Reporter 接收 MySQL Audit syslog 先介绍如何开启 MySQL general log 功能, 并将 general log 写入系统日志 syslog 中, 然后利用 Linux 的 software Syslogd Rsyslog 或 Sy

前言 本文件描述如何使用 N-Reporter 接收 MySQL Audit syslog 先介绍如何开启 MySQL general log 功能, 并将 general log 写入系统日志 syslog 中, 然后利用 Linux 的 software Syslogd Rsyslog 或 Sy 0 如何管理 MySQL 稽核 如何管理 MySQL 审核 V 1.1.4 ( 简体 ) 0 (01-01-02-007) 2014/12/04 前言 本文件描述如何使用 N-Reporter 接收 MySQL Audit syslog 先介绍如何开启 MySQL general log 功能, 并将 general log 写入系统日志 syslog 中, 然后利用 Linux 的 software

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

Outlook Express 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365

Outlook Express 設定說明 Offic 企業郵件 / 虛擬主機郵件 / Office 365 Outlook Express 設定說明 OfficeMail 企業郵件 / 虛擬主機郵件 / Office 365 版權及商標聲明 Cloudmax 匯智提供用戶商務用郵件服務, 本文件由 Cloudmax 匯智製作, 用於教導用戶 進行郵件服務相關設定, 內容中所使用的郵件工具非為 Cloudamx 匯智設計及擁有, 若對 程式資訊有疑問, 請洽程式提供商 本文件所引用之各商標及商品名稱分屬其合法註冊公司所有,

More information

untitled

untitled 18 2006 J 1982 N CD-ROM "fl N J "fl J [ ])( N "fl N N ( ) - 5 - J *1 N [ ] http://www.sinica.edu.tw/ftms-bin/ftmsw3 http://www.sinica.edu.tw/ftms-bin/kiwi1/pkiwi.sh UTF-8 3.0 Big5+ [ ] http://www.lingshidao.com/gushi/index.htm

More information

Maasa停車場管理系統

Maasa停車場管理系統 停車 場 管理系 統 目錄 一.前言 1 1.1 系統特色 1 1.2 說明書閱讀方法 2 二.安裝流程 3 三.第一次使用 4 四.停車開單/收據 12 五.開單紀錄傳回電腦 17 六.停車場管理系統詳解 19 6.1 盤點機端 19 6.1.1 統計資料 21 6.1.2 工具箱 資料 瀏覽 22 6.1.3 工具箱 資料刪除 23 6.1.4 工具箱 補印開單 24 6.2 Pc端 25 6.2.1

More information

常見 SAS 9.3 Foundation 安裝問題 一 安裝注意事項 當您安裝上發生任何問題時, 須請先確認以下事項 : 1. 確認電腦作業系統是否符合 SAS 軟體安裝要求 確認方法 : 請至 p.2 (1) 確認系統資訊 2. 請依照 安裝導引 進行安裝, 首先確認安裝步驟是否正確 3. 安裝

常見 SAS 9.3 Foundation 安裝問題 一 安裝注意事項 當您安裝上發生任何問題時, 須請先確認以下事項 : 1. 確認電腦作業系統是否符合 SAS 軟體安裝要求 確認方法 : 請至 p.2 (1) 確認系統資訊 2. 請依照 安裝導引 進行安裝, 首先確認安裝步驟是否正確 3. 安裝 常見 SAS 9.3 Foundation 安裝問題 一 安裝注意事項 當您安裝上發生任何問題時, 須請先確認以下事項 : 1. 確認電腦作業系統是否符合 SAS 軟體安裝要求 確認方法 : 請至 p.2 (1) 確認系統資訊 2. 請依照 安裝導引 進行安裝, 首先確認安裝步驟是否正確 3. 安裝 SAS 時, 必須使用英文的電腦名稱及安裝帳號 解決方法 : 請至 p.3 (2) 確認安裝注意事項

More information

Please choose the VBIOS update guide according to your language. 請依據您的語言選擇以下的 VBIOS 更新指南 请依据您的语言选择以下的 VBIOS 更新指南 English 繁體中文 简体中文 1

Please choose the VBIOS update guide according to your language. 請依據您的語言選擇以下的 VBIOS 更新指南 请依据您的语言选择以下的 VBIOS 更新指南 English 繁體中文 简体中文 1 VBIOS Update Guide VBIOS 更新指南 Prepared by Revision: 1.3 Date: 2016 / 07 / 28 Please choose the VBIOS update guide according to your language. 請依據您的語言選擇以下的 VBIOS 更新指南 请依据您的语言选择以下的 VBIOS 更新指南 English 繁體中文

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

ch08.PDF

ch08.PDF 8-1 CCNA 8.1 CLI 8.1.1 8-2 8-3 8.1.21600 2500 1600 2500 / IOS 8-4 8.2 8.2.1 A 5 IP CLI 1600 2500 8-5 8.1.2-15 Windows 9598NT 2000 HyperTerminal Hilgraeve Microsoft Cisco HyperTerminal Private Edition (PE)

More information

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9 東 吳 大 學 企 研 所 資 訊 管 理 期 末 報 告 weberp 使 用 說 明 書 指 導 教 授 : 尚 榮 安 教 授 第 一 組 童 偉 哲 01353025 劉 彥 澧 01353028 史 璦 禎 01353031 吳 采 紋 98153143 1 目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功

More information

AutoCAD 用戶如何使用 ArchiCAD

AutoCAD 用戶如何使用 ArchiCAD AutoCAD 用戶如何使用 ArchiCAD AutoCAD用戶如何使用ArchiCAD ( 中文版 ) 由 Scott MacKenzie, Simon Gilbert, Geoffrey Moore Langdon, David Byrnes, Ralph Grabowski 編寫 龍庭資訊有限公司 1/73 - 2. 3. 4. -

More information

Sophos Central 快速安裝手冊

Sophos Central 快速安裝手冊 Sophos Central 快速安裝手冊 1 1. Sophos Central...5 2....9 3....13 3.1. Enduser Protection...13 3.2. Intercept X...21 3.3....28 3.4....36 3.5....45 3.5.1...45 3.5.2...50 3.5.3...54 3.5.4...57 3.5.5...60 3.6...63

More information

软件概述

软件概述 Cobra DocGuard BEIJING E-SAFENET SCIENCE & TECHNOLOGY CO.,LTD. 2003 3 20 35 1002 010-82332490 http://www.esafenet.com Cobra DocGuard White Book 1 1....4 1.1...4 1.2 CDG...4 1.3 CDG...4 1.4 CDG...5 1.5

More information

f2.eps

f2.eps 前 言, 目 录 产 品 概 况 1 SICAM PAS SICAM 电 力 自 动 化 系 统 配 置 和 使 用 说 明 配 置 2 操 作 3 实 时 数 据 4 人 机 界 面 5 SINAUT LSA 转 换 器 6 状 态 与 控 制 信 息 A 版 本 号 : 08.03.05 附 录, 索 引 安 全 标 识 由 于 对 设 备 的 特 殊 操 作 往 往 需 要 一 些 特 殊 的

More information

Microsoft PowerPoint - C_Structure.ppt

Microsoft PowerPoint - C_Structure.ppt 結構與其他資料型態 Janet Huang 5-1 結構的宣告 struct 結構名稱 struct 結構名稱變數 1, 變數 2,, 變數 m; struct 結構名稱 變數 1, 變數 2,, 變數 m; student; student; 5-2 1 結構變數初值的設定 struct 結構名稱 struct 結構名稱變數 = 初值 1, 初值 2,, 初值 n student="janet","1350901",100,95

More information

Basic System Administration

Basic System Administration 基 本 系 统 管 理 ESX Server 3.5 ESX Server 3i 版 本 3.5 Virtual Center 2.5 基 本 管 理 指 南 基 本 管 理 指 南 修 订 时 间 :20080410 项 目 :VI-CHS-Q208-490 我 们 的 网 站 提 供 最 新 的 技 术 文 档, 网 址 为 : http://www.vmware.com/cn/support/

More information

RUN_PC連載_10_.doc

RUN_PC連載_10_.doc PowerBuilder 8 (10) Jaguar CTS ASP Jaguar CTS PowerDynamo Jaguar CTS Microsoft ASP (Active Server Pages) ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar Server ASP

More information

SA-DK2-U3Rユーザーズマニュアル

SA-DK2-U3Rユーザーズマニュアル USB3.0 SA-DK2-U3R 2007.0 2 3 4 5 6 7 8 System Info. Manual Rebuild Delete RAID RAID Alarm Rebuild Rate Auto compare Temp Management Load Default Elapse time Event Log 0 2 3 4 2 3 4 ESC 5

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

財金資訊-84期.indd

財金資訊-84期.indd BANK 3.0 BANK 3.0 / 102 12 Target Corporation POS (Point-of-sale) 7,000 200 10 ( ) 103 5 29 11 2 103 7 10 10300173840 ( ) ( ) 1 48 / No.84 / 2015.10 BANK 3.0 1 ( ATM ) ( ) ( ) 103 ( 2) 2 ( ) ( ) ( ) (

More information

Partition Key: 字 符 串 类 型, 表 示 当 前 Entity 的 分 区 信 息 这 个 Property 对 于 Table Service 自 动 纵 向 和 横 向 扩 展 至 关 重 要 Row Key: 字 符 串 类 型, 在 给 定 Partition Key 的

Partition Key: 字 符 串 类 型, 表 示 当 前 Entity 的 分 区 信 息 这 个 Property 对 于 Table Service 自 动 纵 向 和 横 向 扩 展 至 关 重 要 Row Key: 字 符 串 类 型, 在 给 定 Partition Key 的 4.2 使 用 Table Service Table Service 相 对 来 说 是 三 个 Storage Service 中 最 好 理 解 和 最 易 于 接 受 的, 它 主 要 用 来 存 储 结 构 化 数 据 但 是 Table Service 却 并 不 是 一 个 关 系 型 数 据 库 Table Service 由 两 个 部 分 组 成 :Table 和 Entity

More information

User Group SMTP

User Group SMTP SOP v1.00 2003 02 28 TrendMicro Control Manager V2.5 1 1... 3 2... 4 2.1... 4 2.2... 14 3... 24 3.1... 24 3.2... 29 3.3... 34 3.3.1... 34 3.3.2 User Group... 37 3.3.3... 40 3.4... 41 3.4.1... 41 3.4.2

More information

V A. 1 Hyper-V R2 V C. A. Hyper-V B. Microsoft SCOM 20 V C. MAP D. Microsoft SCVMM 2008 V B. V D. 2. IT IT 2

V A. 1 Hyper-V R2 V C. A. Hyper-V B. Microsoft SCOM 20 V C. MAP D. Microsoft SCVMM 2008 V B. V D. 2. IT IT 2 indows Server 2008 R2 08 01 1. V A. 1 Hyper-V R2 V C. A. Hyper-V B. Microsoft SCOM 20 V C. MAP D. Microsoft SCVMM 2008 V B. V D. 2. IT IT 2 08 Windows Server 2008 R2 Hyper-V R2 1. A. V B. V C. V D. 2.

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

Mizuho Bank QR Code 匯出匯款申請書 ( 外匯用 ) 自動化 安裝手冊 ( 中文 ) 第 1 頁, 共 20 頁

Mizuho Bank QR Code 匯出匯款申請書 ( 外匯用 ) 自動化 安裝手冊 ( 中文 ) 第 1 頁, 共 20 頁 Mizuho Bank QR Code 匯出匯款申請書 ( 外匯用 ) 自動化 安裝手冊 ( 中文 ) 第 1 頁, 共 20 頁 目 錄 系統需求... 3 E5002-APPLICATION FOR OUTWARD REMITTANCE (Direct) (QRCode 直接輸入版 ) 安裝流程... 4 E5002-APPLICATION FOR OUTWARD REMITTANCE (Refer)

More information

untitled

untitled BEA WebLogic Server WebLogic Server WebLogic Server Domain Administration Server Managed Server 行 說 Domains Domain Server 1 Server 2 Cluster Server 4 Server 3 Machine A Machine B Machine A 1. Domain Domain

More information

如何試用並啟用Microsoft Azure中的Trend Micro Deep Security防護功能

如何試用並啟用Microsoft Azure中的Trend Micro Deep Security防護功能 一. Deep Security as a Service (DSaaS) 試用申請 : 1. 到 Trend Micro Deep Security as a Service 的 Portal Web 申請試用 https://app.deepsecurity.trendmicro.com/signin.screen 2. 點選 SIGN UP NOW 開始申請 3. 填寫相關資料, 包含帳號名稱

More information

《计算机网络》实验指导书

《计算机网络》实验指导书 1 实 验 一 网 络 组 建 与 管 理 一. 实 验 目 的 1. 掌 握 平 行 双 绞 线 和 交 叉 双 绞 线 的 制 作 方 法 ( 初 级 ) 2. 掌 握 对 等 网 和 代 理 服 务 器 网 络 的 组 建 ( 初 级 ) 3. 会 用 ipconfig 和 ping 命 令 ( 初 级 ) 4. 掌 握 网 络 中 文 件 夹 共 享 和 打 印 机 共 享 ( 初 级 )

More information

PowerPoint Presentation

PowerPoint Presentation 立 97 年度 SNMG 練 DNS & BIND enc1215@gmail.com DNS BIND Resolver Named 理 Named 更 DNS DNS Reference 2 DNS DNS 料 domain ip DNS server DNS server 理 DNS server DNS DNS 狀. root name server 理 3 DNS 狀 DNS (2). com

More information