某公司内部搭建了一个小型的局域网,拓扑图如图2-1所示。公司内部拥有主机约120台,用C类地址段192.168.100.0/24。采用一台Linux服务器作为接入服务器,服务器内部局域网接口地址为192.198.100.254,ISP提供的地址为202.202.212.62。
图2-1
【问题1】(2分)
在Linux中,DHCP的配置文件是(1)。
【问题2】(8分)
内部邮件服务器IP地址为192.168.100.253,MAC地址为01:A8:71:8C:9A:BB;内部文件服务器IP地址为192.168.100.252,MAC地址为01:15:71:8C:77:BC。公司内部网络分为4个网段。
为方便管理,公司使用DHCP服务器为客户机动态配置IP地址,下面是Linux服务器为192.168.100.192/26子网配置DHCP的代码,将其补充完整。
Subnet(2)netmask(3)
{
option routers 192.168.100.254;
option subnet-mask(4);
option broadcast-address(5);
option time-offset-18000;
range(6)(7);
default-lease-time 21600;
max-lease-time 43200;
host servers
{
Hardware ethemet(8);
fixed-address 192.168.100.253;
hardware ethemet 01:15:71:8C:77:BC;
fixed-address(9);
}
}
【问题3】(2分)
配置代码中“option time-offset-18000”的含义是(10)。“default-lease-time 21600”表明,租约期为(11)小时。
(10)备选答案:
A.将本地时间调整为格林威治时间B.将格林威治时间调整为本地时间C.设置最长租约期
【问题4】(3分)
在一台客户机上使用ipconfig命令输出如图2-2所示,正确的说法是(12)。
此时可使用(13)命令释放当前IP地址,然后使用(14)命令向DHCP服务器重新申请IP地址。
(12)备选答案:
A.本地网卡驱动未成功安装
B.未收到DHCP服务器分配的地址
C.DHCP服务器分配给本机的IP地址为169.254.146.48
D.DHCP服务器的IP地址为169.254.146.48
正确答案及解析
正确答案
解析
【问题1】(2分)
(1)dhcpd.conf
【问题2】(8分)
(2)192.168.100.192
(3)255.255.255.192
(4)255.255.255.192
(5)192.168.100.255
(6)192.168.100.193
(7)192.168.100.253
(8)01:A8:71:8C:9A:BB
(9)192.168.100.252
【问题3】(2分)
(10)A
(11)6
【问题4】(3分)
(12)B
(13)ipconfig/release
(14)ipconfig/renew
【问题1】(2分)
Linux中,DHCP服务器的配置文件是dhcpd.conf,位于/etc目录下。
【问题2】(8分)
Subnet 192.168.100.192?netmask 255.255.255.192//配置DHCP分配IP的子网
{
option routers 192.168.100.254;//配置网关地址
option subnet-mask 255.255.255.192;//配置子网掩码
option broadcast-address?192.168.100.255;//配置子网的广播地址
option time-offset-18000;
range?192.168.100.193?192.168.100.253;//配置IP地址池,需要将网关地址排除
default-lease-time 21600;//配置默认租约时间,单位为秒
max-lease-time 43200;//配置最大的租约时间。
host servers
{
Hardware ethemet 01:A8:71:8C:9A:BB;//配置保留主机的MAC地址.
fixed-address 192.168.100.253;
hardware ethemet 01:15:71:8C:77:BC;
fixed-address 192.168.100.252;//配置保留主机的IP地址
}
}
【问题3】(2分)
option time-offset-18000,配置本地时间和格林威治时间的偏移。也就是将本地时间调整为格林威治时间。
【问题4】(3分)
当DHCP客户端在网络中未找到DHCP服务器时,将会分配APIPA地址,范围为169.254.0.0-169.254.255.255.
ipconfig/release:释放IP,ipconfig/renew:重新申请IP地址或重新更新租约。
包含此试题的试卷
你可能感兴趣的试题
Advancements in ( )have contributed to the growth of the automotive industry through the creation and evolution of self-driving vehicles.
-
- A.Artificial Intelligence
- B.Cloud Computing
- C.Internet of Things
- D.Big Data
- 查看答案
In project human resource management , ( )is not a source of power for the project manager.
-
- A.referent power
- B.expert power
- C.reward power
- D.audit power
- 查看答案
At the project establishment stage , the feasibility study mainly includes techinical feasibility analysis , ( ), operation environment feasibility analysis and other aspects of feasibility analysis.
-
- A.detail feasibility analysis
- B.opportunity analysis
- C.economic feasibility analysis
- D.risk analysis
- 查看答案
( )is a grid that shows the project resources assigned to each work package.
-
- A.Stakeholder engagement assessment matrix
- B.Requirements traceability matrix
- C.Probability and impact matrix
- D.Responsibility assignment matrix
- 查看答案
Xinhua News Agency reported in January 2022,Chian will further promote the developmet of a digital economy during the 14th Five-Year Plan eriod(2021-2025). The plan also emphasized industrial ( )transformation.
-
- A.digital
- B.networking
- C.intelligentize
- D.informatization
- 查看答案