如下图所示,3com和Cisco公司的交换机相互连接,在两台交换机之间需传输VLAN ID为1、10、20和30的4个VLAN信息,Catalyst 3548交换机VLAN Trunk的正确配置是()。
- A.Switch-3548 (config-if) # switchport trunk encapsulation dot1q?
Switch-3548 (config-if) # switchport trunk allowed vlan 1,10,20,30
- B.Switch-3548 (config-if) # switchport mode trunk
Switch-3548 (config-if) # switchport trunk encapsulation isl?
Switch-3548 (config-if) # switchport trunk allowed vlan 1-30
- C.Switch-3548 (config-if) # switchport mode trunk
Switch-3548 (config-if) # switchport trunk encapsulation negotiate?
Switch-3548 (config-if) # switchport trunk allowed vlan 1-30
- D.Switch-3548 (config-if) # switchport mode trunk
Switch-3548 (config-if) # switchport trunk encapsulation dot1q
Switch-3548 (config-if) # switchport trunk allowed vlan 1,10,20,30
热度🔥232
解析:打开微信小程序查看本题解析
下列关于计算机病毒的叙述中,正确的是()。
有以下程序:
#include
main()
{ int s,t,A=10; double B=6;
s=sizeof(A); t=sizeof(B);
printf("%d,%d\n",s,t);
}
在VC6.0平台上编译运行,程序运行后的输出结果是( )。
有以下程序
#include
main()
{ int a=1,b=2,c=3,d=0;
if (a==1 && b++==2)
if (b!=2||c--!=3)
printf("%d,%d,%d\n",a,b,c);
else printf("%d,%d,%d\n",a,b,c);
else printf("%d,%d,%d\n",a,b,c);
}
程序运行后的输出结果是
有以下程序
#include
main()
{ double x=2.0, y;
if( x<0.0 ) y=0.0;
else if( (x<5.0) && (!x) ) y=1.0 / ( x+2.0 );
else if( x<10.0 ) y=1.0 / x;
else y=10.0;
printf(" %f\n ", y );
}
程序运行后的输出结果是
在文件系统中,文件的逻辑块与存储介质上物理块存放顺序一致的物理结构是