實驗一:路由器基本配置(1)--IP設(shè)置,用戶名修改,遠程登錄。
成都創(chuàng)新互聯(lián)為客戶提供專業(yè)的網(wǎng)站建設(shè)、做網(wǎng)站、程序、域名、空間一條龍服務(wù),提供基于WEB的系統(tǒng)開發(fā). 服務(wù)項目涵蓋了網(wǎng)頁設(shè)計、網(wǎng)站程序開發(fā)、WEB系統(tǒng)開發(fā)、微信二次開發(fā)、移動網(wǎng)站建設(shè)等網(wǎng)站方面業(yè)務(wù)。工具:IOU一體化模擬器,secure CRT終端
一:IP設(shè)置
開啟虛擬機-->打開IOU一體化模擬器-->輸入用戶名密碼-->
之后步驟如下:
root@IOL:~# ls //顯示
CiscoIOU MPLS_Option QYT_CCNA2.0 RS_MPLS_Test1 TEST
Mcast_Troubleshooting Multicasting QYT-CCNP-Test RS_Test2_BGP V5-CCNP
MPLS_eigrp Q2 QYT-RS SP_TE V5-Switch
MPLS_intergate Q2_Update RS360 SP_Y1_TS1
root@IOL:~# cd QYT_CCNA2.0/ //cd命令打開QYT_CCNA2.0
root@IOL:~/QYT_CCNA2.0# ./start.sh //./start.sh啟動程序
The telnet port is taken by other process //表示程序被其它進程占用
: Address already in use
^Croot@IOL:~/QYT_CCNA2.0# cd .. //cd ..命令退出
root@IOL:~# cd MPLS_intergate/
root@IOL:~/MPLS_intergate# ./stop.sh //進入MPLS_intergate并關(guān)閉
Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html
root@IOL:~/MPLS_intergate# cd ..
root@IOL:~# cd QYT_CCNA2.0/
root@IOL:~/QYT_CCNA2.0# ./start.sh
Waiting on port 2001 ...
Process Id for child is 1471, parent is 1469
Waiting on port 2002 ...
Process Id for child is 1474, parent is 1472
Waiting on port 3001 ...
Process Id for child is 1477, parent is 1475
Waiting on port 3002 ...
Process Id for child is 1480, parent is 1478
Waiting on port 2005 ...
Process Id for child is 1483, parent is 1481
Waiting on port 2006 ...
Process Id for child is 1486, parent is 1484
UNIX ERR:tcgetattr:Invalid argument
Waiting on port 2007 ...
Process Id for child is 1489, parent is 1487
UNIX ERR:tcgetattr:Invalid argument
./start.sh: line 15: start done! : command not found
root@IOL:~/QYT_CCNA2.0# UNIX ERR:tcgetattr:Invalid argument
UNIX ERR:tcgetattr:Invalid argument
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
模擬器部分完成,接下來打開CRT終端
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
連接主機192.168.1.114,快速連接2001、2002路由器。
如圖,注意使用telnet協(xié)議,2001端口,主機名為192.168.1.114 2002路由器配置類似
注:本例中2001路由器hostname為Branch,2002路由器hostname為HQ
HQ>enable //進入特權(quán)模式
HQ#conf t //進入配置模式來操控網(wǎng)絡(luò)
Enter configuration commands, one per line. End with CNTL/Z.
HQ(config)#in
HQ(config)#interface e0/1 //配置這個接口
HQ(config-if)#no shu
HQ(config-if)#no shutdown //開啟這個接口
HQ(config-if)#ip address 192.168.1.2 255.255.255.0 //配置ip地址
HQ(config-if)#
*Sep 12 03:45:53.735: %SYS-5-CONFIG_I: Configured from console by console
HQ#ping 192.168.1.1 //ping 命令 測試與2001是否聯(lián)通
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.1, timeout is 2 seconds:
!!!!! //!說明通了
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms
HQ#
二:改名
HQ(config)#hostname ZH //HQ改名為ZH
三:遠程管理
在2002路由進行如下配置:
HQ(config)#line ? //顯示線路信息
<0-6> First Line number //6個接口
aux Auxiliary line //物理接口
console Primary terminal line //物理接口
vty Virtual terminal //虛擬接口
HQ(config)#line 0 4 //配置虛擬線路
HQ(config-line)#password qyt //設(shè)置密碼
HQ(config-line)#transport input all //允許任何協(xié)議接入該設(shè)備
^
% Invalid input detected at '^' marker. //報錯
HQ#show run | sec vty //查看正在運行的虛擬線路信息
line vty 0 2
password qyt
login
transport input none
line vty 3 4
login
transport input none //說明對線路密碼的配置并沒有保存
HQ(config)#line 0 ? //查看共幾個線路
<1-6> Last Line number
HQ(config)#line 0 HQ(config-line)#password qyt HQ(config-line)#transport input all ^ % Invalid input detected at '^' marker. //對線路0進行配置失敗 HQ(config-line)#exi HQ(config)#line 1 HQ(config-line)#pas HQ(config-line)#password qyt HQ(config-line)#tra in all //對線路1配置成功 HQ(config-line)#exi HQ(config)#line 2 HQ(config-line)#password qyt HQ(config-line)#tra in all HQ(config-line)#exi HQ(config)#line 3 HQ(config-line)#password qyt HQ(config-line)#tra in all HQ(config-line)#exi HQ(config)#line 4 HQ(config-line)#password qyt HQ(config-line)#tra in all HQ(config-line)#exi HQ(config)#line 5 HQ(config-line)#password qyt HQ(config-line)#tra in all HQ(config-line)#exi HQ(config)#line 6 HQ(config-line)#password qyt HQ(config-line)#tra in all //依次對線路進行單獨配置,成功 注:正常情況下應(yīng)該一次完成 HQ(config-line)#exi HQ(config)#do show run | sec HQ(config)#do show run | section vty line vty 0 4 password qyt login transport input all //確認 成功 HQ(config)#enable password cisco //設(shè)置特權(quán)模式密碼為cisco 在Branch路由遠程登錄HQ: Branch> Branch>enable Password: //密碼為CISCO Branch#telnet 192.168.1.2 //telnet測試 Trying 192.168.1.2 ... Open //通 User Access Verification Password: //輸入線路接口密碼:qyt HQ>enable //成功進入HQ(2002)路由器,進入enable模式 Password: //輸入enable密碼:cisco HQ#conf t //進入HQ的配置模式 Enter configuration commands, one per line. End with CNTL/Z. HQ(config)#end //退出配置模式 注意:配置完成后 wr保存配置 另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
分享名稱:CCNA實驗一:路由器基本配置-創(chuàng)新互聯(lián)
本文地址:http://weahome.cn/article/djjpdh.html