某公司内部搭建了一个小型的局域网,拓扑图如图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地址或重新更新租约。
( )is the process of transforming information so it is unintelligible to anyone but the intended recipient.
As each application module is completed,it undergoes( )to ensure that it operates correctly and reliably.
( )algorithm specifies the way to arrange data in a particular order.
After analyzing the source code,( )generates machine instructions that will carry out the meaning of the program at a later time.
( )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.
浏览器开启无痕浏览模式后,( )依然会被保存下来。
下列协议中,不属于TCP/IP协议簇的是( )。
下列传输介质中,带宽最宽、抗干扰能力最强的是( )。
数控编程常需要用参数来描述需要加工的零件的图形。在平面坐标系内,确定一个点需要2个独立的参数,确定一个正方形需要( )个独立的参数。
某书的页码为1,2,3,...,共用数字900个(一个多位数页码包含多个数字),据此可以推断,该书最大的页码为( )。