Citrix 1Y0-A06 資訊指南與考題大綱

1Y0-A06 考試是 Citrix 公司的 Implementing Citrix Provisioning Server 5.0 認證考試官方代號,Implementing Citrix Provisioning Server 5.0 認證作為全球IT領域專家.

1Y0-A06 Exam
Implementing Citrix Provisioning Server 5.0
科目編號:1Y0-A06
科目名稱:Implementing Citrix Provisioning Server 5.0
考題數目:107 Q&As

Citrix 1Y0-A06 資訊指南,是許多大中IT企業選擇人才標準的必備條件。

1.Which step must an administrator take before configuring administrative roles within a Provisioning
Server environment? 
A.Create an administrative service account 
B.Create the administrative groups in Active Directory 
C.Grant the farm administrator db_admin rights in SQL 
D.Add the currently logged in user to the local administrator group 
Answer:B 
2.Scenario:  An  administrator  wants  to  delegate  management  of  a  Provisioning  Server  farm.  The
administrator needs to delegate only these specific tasks: 1. Shut down target devices 2. Boot target
devices 3. Send messages to target devices Which role should the administrator assign for these tasks? 
A.Device Operator 
B.Site Administrator 
C.Farm Administrator 
D.Device Administrator 
Answer:A 

考試大綱
1.了解Citrix Presentation Server 4.0工作原理
2.部署Citrix Presentation Server 4.0
3.發布和管理應用程序、服務器桌面及文檔
4.管理打印機在Citrix Presentation Server 4.0中的使用
5.為用戶提供安全的ICA訪問
6.具備通過Citrix 1y0-256考試的能力
7.學習Testinside 1Y0-A06 認證管理員(Presentation Server 4.0)課程要求學員能對網絡的基礎知識有壹定了解,熟悉Windows Active Directory、終端服務以及安全基本知識。
8.學習 Citrix Presentation Server 4.0 管理員所必需的知識與技術,包括如何安裝、配置和管理服務器,如何管理 License ,如何發布應用程序、如何配置 Web 訪問方式,如何使用 SG 保護服務器,如何使用 IM 部署應用程序,以及如何使用 LM 實現負載平衡等。

Sun SCWCD 310-083 Exam

Sun Certified Web Component Developer for J2EE 5
Exam Number/Code : 310-083
Exam Name : Sun Certified Web Component Developer for J2EE 5
Questions and Answers : 276 Q&As

1. Given the JSP code: 
10. <html> 
11. <body> 
12. <jsp:useBean id=’customer’ class=’com.example.Customer’ /> 
13. Hello, ${customer.title} ${customer.lastName}, welcome 
14. to Squeaky Beans, Inc. 
15. </body> 
16. </html> 
Which three types of JSP code are used? (Choose three.)
A. Java code
B. template text
C. scripting code
D. standard action
E. expression language
Answer: BDE

2. To take advantage of the capabilities of modern browsers that use web standards, such as XHTML and CSS, your web application is being converted from simple JSP pages to JSP Document format. However, one of your JSPs, /scripts/screenFunctions.jsp, generates a JavaScript file. This file is included in several web  forms  to  create  screen-specific  validation  functions  and  are  included  in  these  pages  with  the following statement: 
10. <head> 
11.    <script src=’/scripts/screenFunctions.jsp’ 
12.            language=’javascript’ 
13.            type=’application/javascript’> </script> 
14. </head> 
15. <!– body of the web form –> 
Which JSP code snippet declares that this JSP Document is a JavaScript file?
A. <%@ page contentType=’application/javascript’ %>
B. <jsp:page contentType=’application/javascript’ />
C. <jsp:document contentType=’application/javascript’ />
D. <jsp:directive.page contentType=’application/javascript’ />
E. No declaration is needed because the web form XHTML page already declares the MIME type of the
/scripts/screenFunctions.jsp file in the <script> tag.
Answer: D

H3C路由器之NAT+端口映射實戰

實踐環境就壹臺H3C路由器外網接Internet,新聯通的靜態IP接入。內網直聯非網管交換機。
配置如下:
[RouterGate]display current-configuration
#
 sysname RouterGate                                 //路由器的名字
 cpu-usage cycle 1min
#
radius scheme system
#
domain system
#
local-user root                                          //遠程登錄的用護名
 password simple xxxxxx                          //遠程登錄的明文密碼
 service-type telnet terminal
 level 3                                                        //遠程登錄的權限等級(0-3)3是最高權限
#
acl number 2001                                                  //定義ACL2001(2000-2999是基本ACL)
 rule 0 permit source 192.168.1.0 0.0.0.255       //ACL的0號規則允許源地址的網段訪問
#
interface Aux0
 async mode flow
#
interface Ethernet0/0                                        
 description LAN                                              
 ip address 192.168.1.1 255.255.255.0               
#
interface Ethernet0/1                    
 description ISP
 ip address 218.xx.yy.34 255.255.255.252            //xx和yy處是為此公司地址保密
 nat outbound 2001                                               // 邦定的ACL2001可以訪問出去
 nat server protocol tcp global 218.xx.yy.34 www inside 192.168.1.4 www    //開啟端口映
 nat server protocol tcp global 218.xx.yy.34 ftp inside 192.168.1.4 ftp         ///射到.4服務器
#
interface NULL0
#
 FTP server enable
#
 ip route-static 0.0.0.0 0.0.0.0 218.xx.yy.33 preference 60         //默認路由

user-interface con 0
user-interface aux 0
user-interface vty 0 4                          //設置vty登錄
authentication-mode scheme
 user privilege level 3                         //用護權限
set authentication password simple xxxxxx          //明文密碼
#
return