路由器和交换机命令 |
switch> | 用户模式 |
switch>enable
switch# | 特权模式 |
switch#config t
switch(config)# | 全局配置模式 |
switch(config)#int f0/1
switch(config-if)# | 接口模式 |
disable | 从特权模式回到用户模式 |
exit | 回到前一个模式 |
end(或ctrl+z) | 回到特权模式 |
?
| 1、显示该模式下的所有命令及命令注解
2、显示命令后接参数或配置内容
3、列出所有可能命令的列表以供选择 |
Tab | 命令补全 |
hostname 主机名 | 配置主机名 |
show version | 显示系统IOS名称以及版本信息 |
show running-config | 查看当前的配置信息 |
show mac-address-table | 查看MAC地址表 |
show mac-address-table dynamic | 查看动态学习到的MAC地址表 |
duplex full(或half或auto) | 指定接口的双工模式 |
speed 10 (或100或1000或auto) | 指定接口的通信速率 |
show int 接口名称 | 查看接口的信息 |
line con 0
exec-timeout 0 0 | 无论多长时间系统都
不会返回到初始界面 |
line con 0
logging synchronous | 启用显示同步,
信息不会“打断”输入的命令 |
no ip domain-lookup | 禁用DNS查询 |
int f0/0
ip address ip地址 子网掩码
no shutdown | 路由器配置IP地址,并开启接口
|
int vlan 1
ip address ip地址 子网掩码
no shutdown | 交换机配置IP地址,并开启接口
|
copy running-config startup-config
(或者write) | 保存当前的配置 |
show startup-config | 查看已保存的信息 |
erase startup-config | 删除已保存的信息 |
show arp 或show ip arp | 查看ARP 缓存表 |
clear arp-cache | 清除ARP 缓存表 |
arp ip地址 MAC地址 arpa 接口 | arp 绑定 |
ip route 目标网络地址 子网掩码 下一跳 | 配置静态路由 |
ip route 0.0.0.0 0.0.0.0 下一跳 | 配置默认路由 |
show ip route | 查看路由表 |
show ip int brief | 查看所有接口的IP地址信息 |
default int 接口 | 恢复接口的默认配置 |
| |
windows 命令 |
ipconfig | 查看计算机IP地址配置信息 |
ipconfig /all | 查看详细的IP地址配置信息 |
ping | 检测网络的连通性 |
ping -t | 持续ping,直到ctrl+c结束 |
ping -l 包大小 | 改变数据包的大小 |
ping -n 次数 | 控制ping 的次数 |
ping -a | 返回对方主机的主机名 |
arp -a | 查看ARP 缓存表 |
arp -d | 清除ARP 缓存表 |
arp -s IP地址 MAC地址 | ARP 绑定 |
clear config all | 清除配置 |