路由的基本配置

路由器基本配置:

首先进入特权模式:enable
进入全局配置模式:config terminal
更改主机名称:hostname router1
设置标志区:banner motd @
this is a …………@
在一行中设置标志区:banner motd @ this is a ………… @
设置特权模式密码:enable secret abc
连接虚拟终端:line vty ?  (看一下支持多少个连接)
设置虚拟终端密码:password abc
开启验证:login
退出:exit
连接aux: line aux 0  (一般只有一个端口)
设置密码:password abc
开启验证:login
退出:exit
连接控制台:line console 0 (一般只有一个端口)
设置密码:password abc
开启验证:login
设置连接永不超时:exec-timeout 0 0
设置同步:logging synchronous
退出:exit
设置信息同步:logging synchronous
设定永不超时:exec-timeout 0 0
密码加密:service password-enctyption
进入接口配置模式:interface fastethernet 0/0   (配置0/0端口)
配置IP地址:ip address 192.168.0.1 255.255.255.0
激活端口:no shutdown
退出:exit
密码加密:service password-encryption

管理信息配置:

在特权模式下:
保存配置文件:copy running-config startup-config
加载配置文件:copy startup-config running-config
查看当前设备配置信息:show running-config
查看设备版本信息:show version
查看二层相关的接口信息:show interface
查看三层相关的接口信息:show ip interface
更改历史缓存大小:terminal history size ?
查看历史缓存大小:show terminal
 
在全局模式下:
更改寄存器值:config-register 0x2102
禁用路由功能:no ip routing
禁用域名解析:no ip domain-lookup
 
在接口配置模式下:
去掉IP地址:no ip address
 
开启telnet和ssh:
全局配置模式下:
开启安全http:ip http secure-server
创建用户名和密码:username bjxh privilege 15 password 0 abc123
连接虚拟终端:line vty ?
验证方式(本地):login local
允许连接方式:transport input ssh telnet
只开启telnet:
全局配置模式下:
连接虚拟终端:line vty ?
设置密码:password abc123
设置验证:login

你可能感兴趣的:(职场,路由,休闲)