当前位置:首页计算机类软件水平考试中级网络工程师->某公司网络拓扑结构如图4-1所示。公司内部使用C类私有IP地

某公司网络拓扑结构如图4-1所示。公司内部使用C类私有IP地址,其中公司两个部门分别处于VLAN10和VLAN20,VLAN10采用192.168.10.0/24网段,VLAN20采用192.168.20.0/24网段,每段最后一个地址作为网关地址。

中级网络工程师,历年真题,2014年下半年(下午)《网络工程师》案例分析真题

图4-1

【问题1】(10分)

公司使用VTP协议规划VLAN,三层交换机S1为VTP?Server,其他交换机为VTPClient,并通过SI实现VLAN间通信。请根据网络拓扑和需求说明,完成交换机S1和S2的配置。

S1>enable

S1#configure?terminal

S1(config)#vtp?mode(1)

S1(config)#vtp?domain?shx

S1(config)#vtp?password?shx

S1(config)#vlan?10

S1(config-vlan)#exit

S1(config)#vlan?20

S1(config-vlan)#exit

S1(config)#interface?vlan?10

S1(config-if)#ip?address(2)(3)

S1(config-vlan)#exit

S1(config)#interface?vlan?20

S1(config-if)#ip?address?192.168.20.254?255.255.255.0

S1(config-if)#exit

S1(config)#interface(4)fastethernet?0/22-23

S1(config-if-range)#switchport?mode?access

S1(config-if-range)#switchport?mode(5)

S1(config-if-range)#exit

S1(config)#interface?fastEthernet?0/1

S1(config-if)#(6)//关闭二层功能

S1(config-if)#ip?add?192.168.40.254?255.255.255.0

S1(config-if)#exit

S1(config)#(7)(8)//开启路由功能

S1(corffig)#

S2>enable

S2#configurc?terminal

S2(config)#vtp?mode(9)

S2(config)#vtp?domain?shx

S2(config)#vtp?password?shx

S2(config)#intererce?fastethernet?0/24

S2(config-if)#switchport?mode(10)//设定接口模式

S2(config-if)#end

S2#

【问题2】(5分)

公司申请了202.165.200.0/29地址段,使用NAT-PT为用户提供Internet访问,外部全局地址为202.165.200.1,Web服务器使用的外部映射地址为202.165.200.3。请根据网络拓扑和需求说明,完成路由器Rl的配置。

R1>enable

R1#config?terminal

R1(config)#access-Iist?1(11)192.168.10.0?255.255.255.0

R1(config)#interface?serial?0/0/0

R1(config-if)#ip?address?202.165.200.1?255.255.255.248

R1(config-if)#no?shutdown

R1(config-if)#clock?rate?4000000

R1(config-if)#interface?fastethernet?0/0

R1(config-if)#ip?address?192.168.50.254?255.255.255.0

R1(config-if)#no?shutdown

R1(config-if)#exit

R1(config)#ip?nat?inside?source(12)1?interface?s0/0/0?0verload

…..

R1(config)#ip?nat?inside?source?static(13)202.165.200.3

R1(config)#intcrface?fastethernet?0/0

R1(config-if)#ip?nat(14)

R1(config-if)#interface?serial?0/0/0

R1(config-if)#ip?nat(15)

R1(config-if)#end

R1#

查看答案 纠错
答案:
本题解析:

【问题1】(10分)

(1)Server

(2)192.168.10.254

(3)255.255.255.0

(4)range

(5)Trunk

(6)no switchport

(7)IP

(8)Routing

(9)Client

(10)Trunk

【问题2】(5分)

(11)Permit

(12)list

(13)192.168.40.1

(14)inside

(15)outside

【问题1】(10分)

本题考察交换机的相关配置。

S1>enable

S1#configure terminal

S1(config)vtp mode server

S1(config)#vtp domain shx

S1(config)#vtp password shx

S1(config)#vlan 10

S1(config-vlar)#exit

S1(config)#vlan 20

S1(config-vku)#exit

S1(config)#interface vlan l0

S1(config-if)#ip address 192.168.10.254 255.255.255.0

S1(config-vlar)#exit

S1(config)#interface vlan 20

S1(config-if)#ip address 192.168.20.254 255.255-255.0

S1(config-if)#exit

S1(config)#interface range fastethernet 0/22-23

S1(config-if-range)#switchport mode access

S1(config-if-range)#switchport mode trunk

S1(config-if-range)#exit

S1(config)#interface fastEthernet 0/1

S1(config-if)#no switchport//关闭二层功能

S1(config-if)#ip add 192.168.40.254 255.255.255.0

S1(config-if)#exit

S1(config)#ip routing//开启路由功能

S1(corffig)#

S2>enable

S2#configurc terminal

S2(config)#vtp mode client

S2(config)#vtp domain shx

S2(config)#vtp password shx

S2(config)#intererce fastethernet 0/24

S2(config-if)#switchport mode trunk//设定接口模式

S2(config-if)#end

S2#

【问题2】(5分)

R1>enable

R1#config terminal

R1(config)#access-Iist l permit 192.168.10.0 255.255.255.0

R1(config)#interface serial 0/0/0

R1(config-if)#ip address 202.165.200.1 255.255.255.248

R1(config-if)#no shutdown

R1(config-if)#clock rate 4000000

R1(config-if)#interface fastethernet 0/0

R1(config-if)#ip address 192.168.50.254 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#exit

R1(config)#ip nat inside source list 1 interface s0/0/0 0verload

…..

R1(config)#ip nat inside source static 192.168.40.1 202.165.200.3

R1(config)#intcrface fastethernet 0/0

R1(config-if)#ip nat inside

R1(config-if)#interface serial 0/0/0

R1(config-if)#ip nat outside

R1(config-if)#end

R1#

更新时间:2021-11-23 11:34

你可能感兴趣的试题

单选题

(  )is the process of transforming information so it is unintelligible to anyone but the intended recipient.

  • A.Encryption
  • B.Decryption
  • C.Security
  • D.Protection
查看答案
单选题

As each application module is completed,it undergoes(  )to ensure that it operates correctly and reliably.

  • A.unit testing
  • B.integration testing
  • C.system testing
  • D.acceptance testing
查看答案
单选题

(  )algorithm specifies the way to arrange data in a particular order.

  • A.Search
  • B.Random
  • C.Sorting
  • D.Merge
查看答案
单选题

After analyzing the source code,(  )generates machine instructions that will carry out the meaning of the program at a later time.

  • A.an interpreter
  • B.a linker
  • C.a compiler
  • D.a converter
查看答案
单选题

(  )can help organizations to better understand the information contained within the data and will also help identify the data that is most important to the business and future business decisions.

  • A.Data processing system
  • B.Big Data analytics
  • C.Cloud computing
  • D.Database management
查看答案
单选题

浏览器开启无痕浏览模式后,(  )依然会被保存下来。

  • A.浏览历史
  • B.搜索历史
  • C.已下载文件
  • D.临时文件
查看答案
单选题

下列协议中,不属于TCP/IP协议簇的是(  )。

  • A.CSMA/CD
  • B.IP
  • C.TCP
  • D.UDP
查看答案
单选题

下列传输介质中,带宽最宽、抗干扰能力最强的是(  )。

  • A.双绞线
  • B.红外线
  • C.同轴电缆
  • D.光纤
查看答案
单选题

数控编程常需要用参数来描述需要加工的零件的图形。在平面坐标系内,确定一个点需要2个独立的参数,确定一个正方形需要(  )个独立的参数。

  • A.3
  • B.4
  • C.5
  • D.6
查看答案
单选题

某书的页码为1,2,3,...,共用数字900个(一个多位数页码包含多个数字),据此可以推断,该书最大的页码为(  )。

  • A.237
  • B.336
  • C.711
  • D.900
查看答案