通过网络接口远程访问命令行接口(CLI)的方式是什么? What is a way to remotely access the command-line interface (CLI) over a network interface?
A: 辅助端口 auxiliary port
B: 控制台端口 console port
C: SSH访问 SSH access
D: LAN接口 LAN interface
E: WAN接口 WAN interface
A: 辅助端口 auxiliary port
B: 控制台端口 console port
C: SSH访问 SSH access
D: LAN接口 LAN interface
E: WAN接口 WAN interface
C
举一反三
- (网络)华为交换机将某个接口配置为trunk模式命令为? A: interface 接口号; switch-port mode trunk B: interface 接口号; port link-type trunk C: interface 接口号; port link type trunk D: interface 接口号; switch port mode trunk
- 检查接口状态的命令是: ACT interface|DIAG interface|MOD interface|display interface
- 实施 EtherChannel 之后,多个物理接口可捆绑为哪种逻辑连接类型? A: interface range B: interface range C: VLAN 接口 D: 端口通道
- 将端口模式设置为访问模式的命令是: A: switchport access B: switchport interface accesss C: switchport mode accesss D: switchport mode interface
- 将端口模式设置为访问模式的命令是: A: switchport access B: switchport interface accesss C: switchport mode accesss D: switchport mode interface
内容
- 0
将交换机端口模式设置为access模式的命令是: A: switchport mode access B: switchport interface access C: switchport trunk access D: switchport access interface
- 1
思科模拟器中把交换机某个端口划分给vlan10,操作命令是()。 A: access vlan10 B: interface vlan10 C: port access vlan10 D: switchport access<br/>vlan10
- 2
interface表示接口
- 3
当在安全环境下执行初始配置时,下列哪个程序可用来访问Cisco2960交换机? A: 使用Telnet通过网络远程访问交换机。 B: 使用控制台端口从PC的串行接口或USB接口本地访问交换机。 C: 使用安全外壳协议(SSH)通过网络远程访问交换机。 D: 使用AUX端口从PC的串行接口或USB接口本地访问交换机。
- 4
请看下列代码:public interface A {String DEFAULT_GREETING = “Hello World”;public void method1();}现有接口B,是A接口的子接口,下列选择中B接口的声明正确的是: A: public interface B extends A { } B: public interface B implements A {} C: public interface B instanceOf A {} D: public interface B inheritsFrom A { }