题目内容 (请给出正确答案)
[主观题]

Host 1 sends a request for a file to remote sever1. Which destination address does Host 1 place f the packet containing the request()。

A.The Mac address of the NIC in Sever1

B.The IP address of Server 1.

C.The MAC address of the s0/0/0 interface of router R2

D.The IP address of the s0/0/0 interface of router R1

E.The IP address of the Fa0/0 interface of router R1

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“Host 1 sends a request for a f…”相关的问题

第1题

Host 1 has just started up and requests a web page from web server 2. Which two statements describe steps in the process Host 1 uses to send the request to web server 2 (choose two)()。

A.Host 1 addresses the frames to the MAC address of router R1

B.Host 1 looks in its ARP cache for the MAC address of router R1

C.Host 1 addresses the frames to the MAC address of web server 2

D.Host 1 sends the packets to router R1 to be forwarded to web server 2

E.Host 1 sends a broadcast ARP request to obtain the MAC address of webserver2

点击查看答案

第2题

Host 1 sends an ICMP echo request to remote sever1. Layer2 header of the frame containing the ping packet()。

A.The IP address of sever 1.

B.The MAC address of NIC in sever 1.

C.The IP address of F0/0 interface of router R1.

D.The MAC address of the Fa0/0 interface of router R1.

E.The IP address of the s0/0/0 interface of router R2

F.The MAC address of the s0/0/0 interface of router R2

点击查看答案

第3题

When an IPv6 enabled host boots, it sends a router solicitation (RS) message. An IPv6 router responds with a router advertisement (RA).Which two items are c ontained in the RA?()

A. any route advertisements it has received

B. prefixes for the link

C. keepalive timers

D. IPv6 address for the host

E. request for the local host IP address

F. lifetime of the prefix

点击查看答案

第4题

How does the ERX Edge Router interact with subscriber IP addresses assigned by an externa lDHCP server?()

A.It monitors messages from the external server and updates the routing table as needed.

B.It maintains the leases for the DHCP server and reassigns addresses to new subscribers.

C.It sends keepalives to the subscriber and makes the address available when the subscriber stops responding.

D.It sends keepalives to the subscriber and removes the host route when the subscriber stops responding.

点击查看答案

第5题

How does the ERX Edge Router interact with subscriber IP addresses assigned by an external DHCP server?()

A.It monitors messages from the external server and updates the routing table as needed.

B.It maintains the leases for the DHCP server and reassigns addresses to new subscribers.

C.It sends keep alives to the subscriber and makes the address available when the subscriber stops responding.

D.It sends keep alives to the subscriber and removes the host route when the subscriber stops responding.

点击查看答案

第6题

On a half-duplex Ethernet LAN, two hosts attempt to send data simultaneously,resulting in a collision. Following this collision, what will the hosts do?()

A. The destination host sends a request to the source for retransmission.

B. The jam signal indicates that the collision has been cleared.

C. The hosts will attempt to resume transmission after a time delay has expired.

D. An electrical pulse indicates that the collision has cleared.

E. The router on the segment will signal that the collision has cleared.

F. The hosts will do nothing, as the higher layers are responsible for data error correction and re-transmission.

点击查看答案

第7题

On a half-duplex Ethernet LAN, two hosts attempt to send data simultaneously, resulting in
a collision. Following this collision, what will the hosts do? (Select all valid answers)

A. The destination host sends a request to the source for retransmission.

B. The jam signal indicates that the collision has been cleared.

C. The hosts will attempt to resume transmission after a time delay has expired.

D. An electrical pulse indicates that the collision has cleared.

E. The router on the segment will signal that the collision has cleared.

F. The hosts will do nothing, as the higher layers are responsible for data error correction and re-transmission.

点击查看答案

第8题

Pharming is a scamming practice in which malicious code is installed on a personal compute
r or server, misdirecting users to (71)Web sites without their knowledge or consent. Pharming has been called "phishing without a lure".

In phishing, the perpetrator sends out legitimate-(72)e-mails, appearing to come from some of the Web's most popular sites, in an effort to obtain personal and financial information from individual recipients. But in pharming, larger numbers of computer users can be(73)because it is not necessary to target individuals one by one and no conscious action is required on the part of the victim. In one form. of pharming attack, code sent in an e-mail modifies local host files on a personal computer. The host files convert URLs into the number strings that the computer uses to access Web sites. A computer with a compromised host file will go to the fake Web site even if a user types in the correct Internet address or clicks on an affected(74)entry. Some spyware removal programs can correct the corruption, but it frequently recurs unless the user changes browsing(75 ).

A.few

B.fraudulent

C.normal

D.structured

点击查看答案

第9题

阅读以下技术说明、Java源程序和运行测试部分,根据要求回答问题1和问题2。【说明】 1.HTTP ◆ HTTP请

阅读以下技术说明、Java源程序和运行测试部分,根据要求回答问题1和问题2。

【说明】

1.HTTP

◆ HTTP请求消息示例

GET/index,htmlHTTP/1.1

Accept:image/gif,image/jpeg,*/*

Accept-Language:zh-ch

Accept-encoding:gzip,deflate

User-Agent:Mozilla/4.0(compatible: MSIE6.0;Windows 2003)

Host:localhost:8080

Connection:Keep-Alive

◆ HTTP响应消息示例

HTTP/1.1 200 OK

Servert:Microsoft-IIS/6.0

Date:Mon,3 Jan 2008 13:13:33 GMT

Content-Type:text/html

Last-Modified:Mon,11 Jan 2008 13:23:42 GMT

Contelit-Length:112

<html>

...

</html>

2.相关类及主要成员函数

◆ ServerSocket类

服务器端套接字,它监听固定端口,以接收来自客户端的连接请求,一旦建立连接就返回一个Socket类型的对象,类中的主要成员函数如表6-16所示。

阅读以下技术说明、Java源程序和运行测试部分,根据要求回答问题1和问题2。【说明】 1.HTTP

◆Socket类 基于连接的套接字,类中的主要成员函数如表6-17所示。

阅读以下技术说明、Java源程序和运行测试部分,根据要求回答问题1和问题2。【说明】 1.HTTP

【Java源程序:一个简单的Web服务器】

/* WebScrvc.java */

packageobjclass;

import java.net.*;

import java.io.*;

public class WebServer{

public static final int PORT=8080; //Web服务器侦听的端口号

public static final String WEB_ROOT= SyStem.getProperty("user.dir")+

File.separator+"webroot";

//WEB_ROOT变量存放Web服务器工作目录,HTML, GIF图片等静态文件资源

private static final String SHUTDOWN_COMMAND="/shutdown";

//SHUTDOWN_COMM_AND变量保存关闭服务器的命令

private Boolean shutdown=false; //是否收到关闭服务器命令的标志

public static void main(Sting[] args) {

WebServer server=new WebServer();

Server.await ()

}

public void await() {

ServerSocket serverSocket = null;

try {

serverSocket = new (1);

//创建侦听端口号为PORT的ServerSocket类型的对象

System.out.println ("WebServerStarted!");

}

catch(IOException e) {

e.printStackTrace ();

SyStem. exit (1);

}

while(!shutdown) { //循环等待客房端连接

Socket socket = null;

InputStream input = null;

OutputStream utput = null;

try{

Socket =(2); //创建来自客房端的连接套接字

Input = socket.(3); //创建输入流

utput = socket.(4); //创建输出流

Request reque

点击查看答案

第10题

LTE支持两种RRC状态(AB)()A、RRC_IDLEB、RRC_CONNECTEDC、RRC_DisconnectD、RRC_Connection Reque

LTE支持两种RRC状态(AB)()

A、RRC_IDLE

B、RRC_CONNECTED

C、RRC_Disconnect

D、RRC_Connection Request

点击查看答案
发送账号至手机
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
温馨提示
每个试题只能免费做一次,如需多次做题,请购买搜题卡
立即购买
稍后再说
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“赏学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

微信搜一搜
赏学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反赏学吧购买须知被冻结。您可在“赏学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
赏学吧
点击打开微信