打開IOU一體化模擬器-->輸入用戶..."/>
您好,登錄后才能下訂單哦!
實(shí)驗(yàn)一:路由器基本配置(1)--IP設(shè)置,用戶名修改,遠(yuǎn)程登錄。
工具:IOU一體化模擬器,secure CRT終端
一:IP設(shè)置
開啟虛擬機(jī)-->打開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 //表示程序被其它進(jìn)程占用
: Address already in use
^Croot@IOL:~/QYT_CCNA2.0# cd .. //cd ..命令退出
root@IOL:~# cd MPLS_intergate/
root@IOL:~/MPLS_intergate# ./stop.sh //進(jìn)入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終端
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
連接主機(jī)192.168.1.114,快速連接2001、2002路由器。
如圖,注意使用telnet協(xié)議,2001端口,主機(jī)名為192.168.1.114 2002路由器配置類似
注:本例中2001路由器hostname為Branch,2002路由器hostname為HQ
HQ>enable //進(jìn)入特權(quán)模式
HQ#conf t //進(jìn)入配置模式來操控網(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
三:遠(yuǎn)程管理
在2002路由進(jìn)行如下配置:
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 //查看正在運(yùn)行的虛擬線路信息
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
<cr
HQ(config)#line 0
HQ(config-line)#password qyt
HQ(config-line)#transport input all
^
% Invalid input detected at '^' marker. //對線路0進(jìn)行配置失敗
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 //依次對線路進(jìn)行單獨(dú)配置,成功
注:正常情況下應(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 //確認(rèn) 成功
HQ(config)#enable password cisco //設(shè)置特權(quán)模式密碼為cisco
在Branch路由遠(yuǎn)程登錄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 //成功進(jìn)入HQ(2002)路由器,進(jìn)入enable模式
Password: //輸入enable密碼:cisco
HQ#conf t //進(jìn)入HQ的配置模式
Enter configuration commands, one per line. End with CNTL/Z.
HQ(config)#end //退出配置模式
注意:配置完成后 wr保存配置
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。