Your company has an IPv4 Ethernet network. A router named R1 connects your segment to the Internet. A router named R2 joins your subnet with a segment named Private1. The Private1 segment has a network address of 10.128.4.0/26. Your computer named WKS1 re

题目

Your company has an IPv4 Ethernet network. A router named R1 connects your segment to the Internet. A router named R2 joins your subnet with a segment named Private1. The Private1 segment has a network address of 10.128.4.0/26. Your computer named WKS1 requires access to servers on the Private1 network.The WKS1 computer configuration is as shown in the following table. Network Addresses IPv4 Address 10.128.64.113 Subnet mask 255.255.252.0 Default Gateway 10.128.64.1 The routers are configured as shown in the following table. Router ID Addresses R1 interface 1 R1 interface 2 (To Internet) 10.128.64.1 131.107.108.37 R2 interface 1 R2 interface 2 10.128.64.10 10.128.4.1 WKS1 is unable to connect to the Private1 network by using the current configuration.You need to add a persistent route for the Private1 network to the routing table on WKS1.Which command should you run on WKS1?()

A. Route add -p 10.128.4.0/22 10.128.4.1

B. Route add p 10.128.4.0/26 10.128.64.10

C. Route add p 10.128.4.0 mask 255.255.255.192 10.128.64.1

D. Route add p 10.128.64.10 mask 255.255.255.192 10.128.4.0


相似考题
参考答案和解析
参考答案:B
更多“Your company has an IPv4 Ethernet network. A router named R1 connects your segment to the ”相关问题
  • 第1题:

    My opinions are similar to ___.

    A.you

    B.your

    C.yours

    D.your's


    正确答案:C

  • 第2题:

    ( ) – Is Miss White __________ English teacher, Maria?

    – No, she teaches __________ geography.

    A.your;my

    B.you;mine

    C.you;us

    D.your;us


    正确答案:D

  • 第3题:

    Your ______ working on my vessel has acknowledged the truth of and liability for the damage.

    A.representative

    B.DP

    C.ship-owner

    D.man


    正确答案:A

  • 第4题:

    What's ( )job? Are ( ) British?

    A. your, your

    B. you, your

    C. your, you


    正确答案:C

  • 第5题:

    48.

    A. my

    B. his

    C. their

    D. your


    正确答案:C
    48.C【解析】由本文及实际生活均可知很多中国学生高中期间不工作,而美国学生喜欢在他们空闲时间馓兼职工作。

  • 第6题:

    【单选题】下面程序的输出是。 main() {enum team {my,your=4,his,her=his+10}; printf("%d%d%d%dn",my,your,his,her);}

    A.0 1 2 3

    B.0 4 0 10

    C.0 4 5 15

    D.l 4 5 15


    DDBBCC C语言对枚举的定义规定:在枚举中声明的各个枚举元素,如果没有明确指出某个枚举元素的值,它的上一个元素存在并有明确值的情况下,这个枚举元素的值为其上一个元素的值+1。在本题中,没有明确说明枚举元素em3的值,则em3=em2+1=1+1=2,进而可知,在printf()打印函数中,要打印的数组元素是aa[3]、aa[1]、aa[2],因此最后的打印结果应当为“DDBBCC”。