CCNA實驗常用的命令總結 路由器實驗: router enable從用戶模式進入特權模式 router# disable or exit從特權模式退出到用戶模式 router# show sessions查看本機上的TELNET會話 router# disconnect關閉所有的TELNET 會話 router# show users查看本機上的用戶 router# erase startup-config刪除NVRAM中的配置 router# reload重啟路由器 router# config terminal從用戶模式進入特權模式 router(config)# hostname rl配置用戶名為rl router(config)# #banner motd#配置開機話語 router# show controllers serial0查看串口0的物理層信息(主要是查看DTE/DCE) router# show ip interface查看端口的IP配置信息 router# show hosts查看主機表 end or ctrl+z從各種配置模式退到特權模式 rl(config)# no ip domain-lookup關閉動態域名解析 rl(config)# ip domain-lookup打開動態域名解析 rl(config)# ip name-server 202.106.0.20打開動態域名解析之后便可以指定DNS服務 rl(config)# interface serial 0進入serial 0的接口配置模式 rl(config-if)# no shutdown路由器出廠默認所有端口關閉,使用此命令使它們打開 rl(config-if)# encapsulation ppp封裝ppp rl(config-if)# clockrate 64000如果是DCE使需要設置時鐘速率,如果是DTE使不必設置 rl(config-if)# bandwidth 64設置端口帶寬為64K rl(config-if)# ctrl+c 或者ctrl+z快捷鍵退出到特權模式 rl# show interface serial 0查看s0信息,如果看到serial和 line protocol都顯示up,說明鏈路兩端都設置成功 注意:如果出現serial down, line down 可能對方的端口沒有打no shutdown或者電纜沒有插好;如果出現serial up, line down 可能是DCE端沒有設置clock rate, 也可能是封裝格式不對 rl# show cdp neighbors查看CDP鄰居信息 rl# show cdp entry * rl(config-if)# ip add 10.0.0.1 255.0.0.0進入相應的接口,配置相應的IP地址 rl# ping 10.0.0.2使用ping命令查看鄰居的連通性 rl# show ip route查看路由表,可以看到以C打頭的路由 信息,這是直連的路由信息;可以看到 R開頭的路由信息,是從rip學來的路由信息;可看到以I開頭的路由信息取代 了以R開頭的路由信息,這是因為igrp 的管理距離是100,小于rip的120 rl(config-if)# router rip啟動RIP路由協議 rl(config-router)# network 10.0.0.0發布網段(注意network后面是接的網絡號而不是IP地址) rl# show ip protocol查看配置的路由協議 rl(config)# router igrp 300一定要注意在IGRP后面加自治系統號,考試的時候題目會告訴你AS NUMBER, 照敲就是 rl(config-router)# network 10.0.0.0 rl(config)# line vty0 4進入虛擬線程配置模式,在此模式可對telnet功能進行配置 rl(config-line)# login rl(config-line)# password cisco配置telnet密碼,默認的網絡設備 telnet的 功能是關閉的,配了密碼之后會自動打開 rl(config)# enable password cisco配置進入enable模式的密碼, 區分大小寫 rl(config)# enable secret ciscocisco配置進入enable模式的密碼,是加密的密碼,show run是看不見的 rl(config)# line console 0 rl(config-line)# login rl(config-line)# password cisco配置進入用戶模式的密碼 rl(config-line)# logging synchronous輸入同步 rl(config-line)# exec-timeout 0 0禁止因為一段時間沒有輸入而跳出 rl# copy running-config startup-config保存配置,考試的時候注意題目的要求,如果題目里要求你保存配置就一定不能少了這一項 r1# copy tftp startup-config r1# copy running-config tftp r1# copy tftp flash 交換機實驗: switch(config)# ip address 192.168.0.177 255.255.255.0與路由器在接口上的配置IP不同,交換機是在全局配置模式配置 switch(config)# ip default-gateway 192.158.0.1給交換機配置一個缺省網關,請注意,不用寫掩碼 switch(config)# vlan2 name cisco配置一個vlan2并且指定名字叫CISCO switch# show interfaces查看端口狀態 switch(config)# interface e0/10進入端口e0/10 switch(config-if)# vlan-membership static 2將端口放進vlan2里面 switch(config)# int f0/26進入快速以太網端口f0/26 switch(config-if)# trunk on啟用trunk,注意:只能在百兆以上端口啟用trunk switch(config-if)# no trunk-vlan 51 52在主干上關閉VLAN51、52的傳輸