博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CCNA实验(1) -- 基本配置
阅读量:6515 次
发布时间:2019-06-24

本文共 1824 字,大约阅读时间需要 6 分钟。

Ctrl+A: 到行首(Ahead)

Ctrl+E: 到行尾(End)
Esc+B: 回退一个单词(Back)
Esc+F: 前进一个单词(Forward)

1.三种配置模式

2.时间时区配置
3.设置超时时间
4.配置密码
5.关闭DNS解析
6.配置描述信息
7.配置命令别名
8.清空配置文件
9.配置模拟PC
10.CDP协议

enable

conf t
no ip do lo
enable pass cisco
line con 0
logg sync
exec-t 0 0
line vty 0 4
pass cisco
logg sync
exit
host

1.三种配置模式

---------------------------------------
enable
conf t
host R1
exit
disable
quit
2.时间时区配置
---------------------------------------
enable
clock set 10:10:10 02 jul 2013
conf t
clock timezone BeiJing +8
end
show clock
3.设置超时时间
---------------------------------------
conf t
line con 0
exec-t 0 0
logg sync
exit
4.配置密码
---------------------------------------
conf t
enable password cisco
line con 0
password cisco
login
exit
line vty 0 4
password cisco
login
exit
line aux 0
password cisco
login
exit
service password-encryption
5.关闭DNS解析
-----------------------------------------
conf t
no ip domain look
6.配置描述信息
-----------------------------------------
conf t
banner motd # If you are not the WEB user, exit landing. #
int f0/0
description Fast Ethernet Interface 0/0 description message.
exit
show running-config int f0/0

7.配置命令别名

----------------------------------------------
conf t
alias exec open show ip route
end
open
8.清空配置文件
----------------------------------------------
end
erase startup-config
reload
9.配置模拟PC
----------------------------------------------
no ip routing
ip default-gateway 10.1.1.1
int f0/0
ip add 10.1.1.2 255.255.255.0
exit
end
show ip route
10.CDP协议
-----------------------------------------------
R1:
int f0/0
no shut
exit
R2:
int f0/0
no shut
exit
int f1/0
no shut
exit
R3:
int f0/0
no shut
exit
R2:
end
show cdp neighbors
show cdp neighbors detail
conf t
no cdp run
end
show cdp neighbors
conf t
cdp run
int f0/0
no cdp enable
cdp enable
exit

转载于:https://www.cnblogs.com/thlzhf/p/3144466.html

你可能感兴趣的文章
btrfs的使用(案例讲解)
查看>>
安装配置samba服务器和客户端
查看>>
filebeat 配置文件详解
查看>>
Swift与OC混编
查看>>
CentOS 5 (64位)下lnmp平台搭建
查看>>
redhat 6.5 配置WAS控制台中文
查看>>
mysql实现vsftp虚拟用户访问
查看>>
记录一次处理https监听不正确的过程
查看>>
SCOM 2012 SP1服务器上安装和配置Veeam MP for VMware
查看>>
多核编程的四层境界
查看>>
Windows Phone 实用开发技巧(11):让StackPanel中的控件靠右对齐
查看>>
小记如何修改xen模块
查看>>
实时游戏对战引擎Photon
查看>>
C语言位操作控件属性
查看>>
nginx的安装及基本配置,及多个域名服务
查看>>
Servlet访问postgresql数据库并提取数据显示在前端jsp页面
查看>>
不改一行代码定位线上性能问题
查看>>
定义运算符
查看>>
git管理
查看>>
idea演示
查看>>