CIFS acceleration is not working. Which three steps should you use to troubleshoot the problem? ()(Choose three.)A. Verify that HTTP acceleration is enabled.B. Verify that TCP Acceleration (AFP) is enabled.C. Verify that the CIFS application definition is

题目
CIFS acceleration is not working. Which three steps should you use to troubleshoot the problem? ()(Choose three.)

A. Verify that HTTP acceleration is enabled.

B. Verify that TCP Acceleration (AFP) is enabled.

C. Verify that the CIFS application definition is defined correctly.

D. Verify that SMB signing is not required on the clients and domain controllers.

E. Verify that CIFS acceleration is enabled on both the server and client-side WX devices.


相似考题
更多“CIFS acceleration is not working. Which three steps should you use to troubleshoot the problem? ()(Choose three.) ”相关问题
  • 第1题:

    有关NFS协议和CIFS协议说法正确的是?( )

    A.NFS采取的是B/S架构、CIFS采取的是C/S架构

    B.NFS采取的是C/S架构、CIFS采取的是B/S架构

    C.NFS和CIFS都采取的是C/S架构

    D.NFS和CIFS都采取的是B/S架构


    参考答案:C

  • 第2题:

    You ________ show more respect for your elders.

    A. can

    B. could

    C. might

    D. should


    参考答案:D

  • 第3题:

    DataDomain的连接方式有哪些?()

    A.VTL,NDMP,CIFS,NFS,DDBoost

    B.VTL,FC磁盘,CIFS,NFS

    C.VTL,DDBoost,OST,FC磁盘

    D.DDBoost,OST,FC磁盘,NFS,CIFS


    答案:A

  • 第4题:

    以下程序段的输出结果为 ( )int j=2;switch(j){case 2:System.out.print("two.");case 2+1:System.out.println("three.");breakdefault:System.out.println("value is"+j);break;}

    A.two.three.

    B.two.

    C.three.

    D.value is 2


    正确答案:A
    解析:该题测试的是考生对switch语句的掌握,执行时,swish语句根据表达式返回的值与每个case子句的值相比较。如果匹配成功,则执行该case子句后的语句序列,直到执行到break语句或switch语句结束,然后跳出switch语句。如果匹配不成功,则跳转到default语句。本题中的switch(2)应对应case2,所以输出"two.",但是它后面没有break,所以继续执行case2+1,输出"three.",这时遇到break,则跳出switch语句。所以本题选择A。

  • 第5题:

    A:I have got a pain in my chest. B:You ( )see the doctor.

    A. have

    B. need

    C. should


    正确答案:C

  • 第6题:

    以下程序段的输出结果为( )。 int j=2 switch (j){ Case 2: system.out.print("two."): Case 2+1: System.out.println("three."); break: default: System.out.println (“value is”+j): Break }A.B.two

    A.two.three.

    B.two

    C.three

    D.value is 2


    正确答案:A