思科设备配置命令

RA

enable



RA#

configure    terminal    (进入全局配置模式)

hostname    RA    (修改设备名为RA)

enable    password    todd    (修改密码为todd)

show    controllers    serial 2/0    (查看第2/0个serial端口是DCE还是DTE)  

show    ip    route    (显示该设备的IP设置和路由表)

copy    running-config    startup-config    (将配置文件存盘,断电重启不会丢)

show    running-config    (显示当前配置)

show    ip    interface    brief    (显示IP地址表)

show    interface    serial    1/0    (查看第1/0个串口的信息)



RA(config)#

interface    fastEthernet    0/0    (进入快速以太网的第0个模块第0个接口)

interface    serial    2/0    (进入串口的第2个模块第0个接口)

ip    route    192.168.0.0    255.255.255.0    192.168.1.1    (设置静态路由)

ip    http    server    (配置路由器可以使用网页设置)

line    vty    0    1869    (开启telnet访问允许多少个人同时telnet,首个0,末个1869)



RA(config-line)#

password    aaa    (设置telnet的密码为aaa)

login




RA(config-if)#

ip    address    192.168.0.1    255.255.255.0    (配置该端口的IP地址和子网掩码)

ip    helper-address    192.168.0.100    (配置DHCP中继,192.168.0.100是DHCP服务器)

clock    rate    64000    (在串口的DCE端设置时钟频率控制网络带宽)

no    shutdown    (使该端口处于启用状态)

encapsulation    frame-relay    (用帧中继封装数据)

interface    serial    1/0.1    point-to-point    (设置点到点的子接口)



RA(config-subif)#

ip    address    10.0.0.2    255.0.0.0    (配置该子接口的IP地址和子网掩码)

frame-relay    interface-dlci    103    (设置盖子接口的DLCI数值)





本文出自 “学习记录” 博客,谢绝转载!

你可能感兴趣的:(CCNA)