Cisco Catalyst 6500交换机采用telnet远程管理方式进行配置,其设备管理地址是194.56.9.178/27,缺省路由是194.56.9.161,下列对交换机预先进行的配置,正确的是()
- A.Switch- 6500> (enable)set interface sc0 194.56.9.178 255.255.255.224 194.56.9.191
Switch- 6500> (enable)set ip route 0.0.0.0 194.56.9.161
- B.Switch- 6500> (enable)set port sc0 194.56.9.178 255.255.255.224 194.56.9.191
Switch- 6500> (enable)set ip route 0.0.0.0 194.56.9.161
- C.Switch- 6500> (enable)set interface sc0 194.56.9.178 255.255.255.224 194.56.9.255
Switch- 6500> (enable)set ip default route 194.56.9.161
- D.Switch- 6500> (enable)set interface vlan1 194.56.9.178 255.255.255.224 194.56.9.191
Switch- 6500> (enable)set ip route 0.0.0.0 194.56.9.161
热度🔥351
解析:打开微信小程序查看本题解析
主窗体和子窗体通常用于显示多个表或查询中的数据,这些表或查询中的数据一般应该具有的关系是
有以下程序
#include
void f(int x[], int n)
{ if ( n> 1)
{ f(&x[1], n-1);
printf("%d,", x[0]);
}
else
printf("%d,", x[0]);
}
main()
{ int z[6] = {1,2,3,4,5,6};
f(z,6); printf("\n");
}
程序的运行结果是
下面关于嵌入式系统逻辑组成的叙述中,错误的是( )。