標籤:cisco
【資料整理】cisco [shell, command]
Promot Mode{User Mode:Router>(input: enable)Privilege Mode:Router#(input:conf t)Global Config Mode:Router(config)#----Ctrl-Z -> PM, Exit -> GCMInterface:Router(config-if)#Sub-interface:Router(config-subif)#Controller:Router(config-controller)#Line:Router(config-line)#Router:Router(config-router)#IPX router :Router(config-ipx-router)#}Command{ 1)privilegeenable //從使用者模式進入特權模式 configure terminal //進入配置模式hostname R1 //配置路由器的主機名稱為R1 login //使用者要進入路由器,需要先進行登入 enable password yourpassword //配置進入特權模式的密碼,密碼不加密 enable secret yourpassword //配置進入特權模式的密碼,密碼加密 exit //退回到上一級模式 end //直接回到特權模式 sh run | append\begin\exclude\include\redirect\section\tee...2)interfaceshow interface f0/0 //顯示f0/0介面資訊 interface f0/0 //進入f0/0介面 ip address 192.168.10.1 255.255.255.0 //配置介面的IP 地址 no shutdown //開啟介面 3)routerno ip domain-lookup //路由器不使用DNS伺服器解析主機的 IP 地址 logging synchonous //對路由器上的提示資訊進行同步,防止資訊幹擾我們輸入命令 no ip routing //關閉路由器的路由功能 ip default-gateway 10.1.14.254 //配置路由器訪問其他網段時所需的網關 ---Example:R1>enableR1#configure terminalR1(config)#hostname AtoBAtoB(config)#interface f0/0AtoB(config-if)#ip address 192.168.10.1 255.255.255.0AtoB(config-if)#no shutdownAtoB(config-if)#endR2>enableR2#configure terminalR2(config)#hostname BtoABtoA(config)#interface f0/0BtoA(config-if)#ip address 192.168.10.2 255.255.255.0BtoA(config-if)#no shutdownBtoA(config-if)#end---PINGSending 5, 100-byte ICMP Echos to 192.168.10.2, timeout is 2 seconds:!!!!!Success rate is 100 percent (5/5), round-trip min/avg/max = 4/17/36 ms4)IOSshow version //IOS版本資訊config-regiser 0x2101 //修改配置寄存器show flashcopy run starterase start}
【資料整理】cisco [shell, command]