发布网友
共3个回答
热心网友
电脑与交换机连接后,使用超级终端,配置。
配置命令如下:
conf t (配置交换机名字)
(config)#hostname switch16
(config)#exit
#wr m
#vlan database (定义域)
(vlan)#vtp domain shougang
(vlan)#vtp client
(vlan)#vtp password xxxxxxxx
(vlan)#exit
#wr m
#conf t (设置交换机的IP地址、子网掩码及默认网关)
(config-if)#int vlan1
(config-if)#ip address 10.10.1.16 255.255.255.0
(config-if)#ip default-gateway 10.10.1.1
(config-if)#exit
#wr m
#line vty 0 4 (设置远程控制连接数及密码)
#password xxxxxxxx (此处为您要设置的交换机密码)
#password xxxxxxxx 和上面相同
#login
#line con 0
#password xxxxxxxx (此处为您要设置的交换机enable密码)
#password xxxxxxxx 和上面相同
#login
#exit
#wr m
#conf t
#enable password xxxxxxxx
#service password-e (在交换机show run命令里可隐藏交换机的密码)
#no sh
#exit
#wr m
#conf t
#int range fas 0/1 -18
#no shut
#int range fas 0/19 -24 (配置端口模式)
#switch mode trunk
#switch trunk allowed vlan all
#no sh
#exit
#exit
#wr m
热心网友
http://tools.cisco.com/search/JSP/search-results.get?isFormSubmit=true&strqueryid=1&websessionid=MyOZ3eHlZuQ2unbB3CHEfAD&strCurrentSimilarSearchBreadCrumb=&strCurrentSelectedModifierValues=&strSearchPageContext=allresults&profile=zhcnsppublished&strSortBy=cdcdevfour&strPrevQuery=3750+switch&strQueryText=3750+&country=CN&language=zh&langctry=zhCN
热心网友
具体需要配置什么