配置交换机主机名:
#enable
#configure terminal
#hostname SW1
配置虚拟局域网接口(SVI):
#interface vlan 1
#ip address 192.168.1.100 255.255.255.0
#no shutdown
#exit
#ip default-gateway 192.168.1.254
配置交换机口令:
#enable secret ytvc
#line console 0
#password admin
#login
#exit
#line vty 0 4
#password ccna
#login
#exit
#service password-encryption
配置交换机登录标语:
#banner motd #Authorized Access Only!#
保存配置:
#end
#copy running-config startup-config 或 #write
查看配置文件:
#show running-config
配置FTP客户端:
#ip ftp username ccna
#ip ftp password ccnp
#show flash 查看设备配置文件
备份配置文件到FTP服务器:
#copy flash ftp
#delete flash:config.txt 删除配置文件
#copy startup-config running-config 将配置文件加载到内存
#copy running-config flash 把运行配置文件复制到flash中保存
#copy ftp flash 把ftp服务器中的文件复制到flash中
配置路由器DHCP服务器:
#hostname Router1
#interface g0/0
#ip address 192.168.1.254 255.255.255.0
#no shutdown
#exit
#ip dhcp exclude-address 192.168.1.1 192.168.1.10 排除地址段
#ip dhcp pool ytvc 建立地址池,名称为ytvc
#network 192.168.1.0 255.255.255.0 设置DHCP分配的网络子网掩码
#default-router 192.168.1.254 设置dhcp分配的网关
#dns-server 114.114.114.114 设置dhcp分配的DNS
#show ip dhcp pool 查看dhcp地址池的信息
#show ip dhcp binding 查看dhcp地址绑定情况
本文摘自 :https://blog.51cto.com/u