交换机的基本配置

配置主机名

switch(config)#hostname s1 

禁止路由器查找DNS  

switch(config)#no ip domain-lookup  

配置交换机密码:

switch(config)#enable secret xu  

switch(config)#service password-encryption

配置交换机的管理地址:

switch(config)#interface vlan 1

switch(config-if)#ip address 192.168.1.100 255.255.255.0

switch(config-if)#no shutdown

switch(config)#ip default-gateway 192.168.1.254

配置远程登录Telnet:

switch(config)#line vty 0 15

switch(config-line)#password xu

switch(config-line)#login

配置远程登录ssh:

switch(config)#ip domain-name xu.com    配置域名 

switch(config)#crypto key generate rsa

switch(config)#line vty 0 15

switch(config-line)#login local

switch(config)#uesrname xu secret xu

调试验证:

switch#show ip interface brief

switch#show interfaces fa0/1 switchport

switch#show mac-address-table

router#telnet 192.168.1.100    在路由器上Telnet

router#ssh -l xu 192.168.1.100   在路由器上ssh


查看交换机的ios等

switch#show flash

switch#show running-config

本文出自 “银河系|计算机网络” 博客,谢绝转载!

你可能感兴趣的:(基本配置,交换机)