Host A opens a Telnet connection to Host B. Host A then opens another Telnet connection to Host B. These connections are the only communication between Host A and Host B. The security policy configuration permits both connections.How many sessions exist between Host A and Host B?()
A.1
B.2
C.3
D.4
第1题:
A.HOST-A
B.HOST-B
C.HOST-C
D.HOST-D
第2题:
A.Host-basedIPScanworkinpromiscuousmodeorinlinemode.
B.Network-basedIPScanprovideprotectiontodesktopsandserverswithouttheneedofinstalling specializedsoftwareontheendhostsandservers.
C.Network-basedIPSisbettersuitedforinspectionofSSLandTLSencrypteddataflows.
D.Host-basedIPSdeploymentrequireslessplanningthannetwork-basedIPS.
第3题:
A.RouterC会使用ICMP通知Host1“Host2无法到达”
B.RouterC会使用ICMP通知Host1“Host1无法到达”
C.RouterC会使用ICMP通知Host1,RouterA和RouterB“Host2无法到达”
D.RouterC会发送一个“DestinationUnreachable”的消息类型
E.RouterC会发送一个“RouterSelection”的消息类型
F.RouterC会发送一个“SourceQuench”的消息类型
第4题:
There are 2 switches in the Testking LAN, with no routers. Ports 1, 2 & 3 are assigned to VLAN 1 in switch 1 and 2 and ports 4, 5 & 6 are assigned to VLAN 2 in both switches. These two switches are connected together via a trunked link.Which of the conditions below would verify trunk and VLAN operation?()
A. Host 1 on VLAN 1 can ping Host 2 on VLAN 1
B. Host 1 on VLAN 1 can ping Host 4 on VLAN 2
C. Host 1 on VLAN 1 can not ping Host 2 on VLAN 1
D. Host 4 on VLAN 2 can not ping Host 1 on VLAN 1
E. Host 4 on VLAN 2 can ping Host 2 on VLAN 2
第5题:
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
第6题:
启动WCF的MyService服务器正确方法是
A.String url = "http://" + Dns.GetHostName() + ":8080/WCFTestServer/"; host = new ServiceHost(MyService, url); host.Open();#B.String url = "http://" + Dns.GetHostName() + ":8080/WCFTestServer/"; host = new ServiceHost(MyService, new Uri(url)); host.Open();#C.String url = "http://" + Dns.GetHostName() + ":8080/WCFTestServer/"; host = new ServiceHost(typeof(MyService), new Uri(url)); host.Open();#D.String url = "http://" + D