1樓:匿名使用者
要想配置ip位址,來就要自
先進入介面模式bai。例如給f0/0配置192.168.1.1/24的duip
r1>en
r1#conf t
r1(conf)#inter f0/0
r1(conf-if)#ip add 192.168.1.1 255.255.255.0
r1(conf-if)#no shut
只要兩個相鄰的路由zhi
器的介面在同乙個網dao段就行了。
要想讓全網互通,還要配置路由協議。
2樓:吳昊
是lan口還是wan口?
3樓:壽楚板冬梅
路由器:
baiswitch>en
switch#show
ipint
b//檢視路由器有哪
du些介面zhi
switch#conf
t//進入全域性模式
daoswitch(config)#intf0/1
//進入介面f0/1
switch(config-if)#ip
add192.168.1.1
255.255.255.0
//設定ip位址和掩碼回
路由器上的介面怎麼配置ip位址,實現全網互通
4樓:緣若夢醒
要想配置ip位址,就要先進入介面模式。例如給f0/0配置192.168.1.1/24的ip
r1>en
r1#conf t
r1(conf)#inter f0/0
r1(conf-if)#ip add 192.168.1.1 255.255.255.0
r1(conf-if)#no shut
只要兩個相鄰的路由器的介面在同乙個網段就行了。
要想讓全網互通,還要配置路由協議。
5樓:吳昊
是lan口還是wan口?
如何配置靜態路由使全網互通 150
6樓:阿斯頓發嘎斯燈
配置靜態路由實現全網互通。
三颱路由器 r0 r1 r2 兩兩互連,每台路由器上都配置了 loopback位址模擬 網路環境
需求描述:
需要在三颱路由器上配置靜態路由,以實現 各網段之間的互通
在r0上路由配置
router>en
router#conf t
router(config)#inter fa0/0
router(config-if)#ip address 192.168.1.2 255.255.255.0
router(config-if)#no shut
router(config-if)#inter fa0/1
router(config-if)#ip address 192.168.2.1 255.255.255.0
router(config-if)#no shut
router(config)#inter loopback 0
router(config-if)#ip address 192.168.10.1 255.255.255.0
router(config-if)#no shut
router(config)#ip route 192.168.3.0 255.255.255.0 192.168.1.1
router(config)#ip route 192.168.20.0 255.255.255.0 192.168.1.1
router(config)#ip route 192.168.30.0 255.255.255.0 192.168.2.2
在r1 上路由配置
router>en
router#conf t
router(config)#inter fa0/0
router(config-if)#ip address 192.168.1.1 255.255.255.0
router(config-if)#no shut
router(config-if)#inter fa0/1
router(config-if)#ip address 192.168.3.1 255.255.255.0
router(config-if)#no shut
router(config)#inter loopback 0
router(config-if)#ip address 192.168.20.1 255.255.255.0
router(config-if)#no shut
router(config)#ip route 192.168.10.0 255.255.255.0 192.168.1.2
router(config)#ip route 192.168.30.0 255.255.255.0 192.168.3.2
router(config)#ip route 192.168.2.0 255.255.255.0 192.168.1.2
router(config)#do show ip rou
c 192.168.1.0/24 is directly connected, fastether***0/0
s 192.168.2.0/24 [1/0] via 192.168.1.2
c 192.168.3.0/24 is directly connected, fastether***0/1
s 192.168.10.0/24 [1/0] via 192.168.1.2
c 192.168.20.0/24 is directly connected, loopback0
s 192.168.30.0/24 [1/0] via 192.168.3.2
在r2路由上配置
router>en
router#conf t
router(config)#inter fa0/0
router(config-if)#ip address 192.168.2.2 255.255.255.0
router(config-if)#no shut
router(config-if)#inter fa0/1
router(config-if)#ip address 192.168.3.2 255.255.255.0
router(config-if)#no shut
router(config)#inter loopback 0
router(config-if)#ip address 192.168.30.1 255.255.255.0
router(config-if)#no shut
router(config)#ip route 192.168.1.0 255.255.255.0 192.168.3.1
router(config)#ip route 192.168.10.0 255.255.255.0 192.168.2.1
router(config)#ip route 192.168.20.0 255.255.255.0 192.168.3.1
router(config)#do show ip rou
s 192.168.1.0/24 [1/0] via 192.168.3.1
c 192.168.2.0/24 is directly connected, fastether***0/0
c 192.168.3.0/24 is directly connected, fastether***0/1
s 192.168.10.0/24 [1/0] via 192.168.2.1
s 192.168.20.0/24 [1/0] via 192.168.3.1
c 192.168.30.0/24 is directly connected, loopback0
最後測試連通性
router#ping 192.168.10.1
sending 5, 100-byte icmp echos to 192.168.10.1, timeout is 2 seconds:
.!!!!
success rate is 80 percent (4/5), round-trip min/avg/max = 31/31/32 ms
router#ping 192.168.30.1
type escape sequence to abort.
sending 5, 100-byte icmp echos to 192.168.30.1, timeout is 2 seconds:
!!!!!
success rate is 100 percent (5/5), round-trip min/avg/max = 16/16/16 ms
其他路由也能ping通
實驗二:配置靜態實現路由選路
在r2上設定
router(config-if)#ip address 192.168.10.1 255.255.255.0
router(config-if)#no shut
把r2和r1靜態路由192.168.10.0 那一段 去掉
router(config)#no ip route 192.168.10.0 255.255.255.0 192.168.1.2
router(config)#no ip route 192.168.10.0 255.255.255.0 192.168.2.1
需求描述:
需要實現當 192.168.20.
0/24 訪問192.168.30.
0/24時 ,資料r1到r2,而當192.168.20.
/24訪問192.168.10.
0/24時,資料從r1經過r0在到r2.返回路由都從r2到r1
1:在r1配置到 192.168.30.0/24的靜態路由
s 192.168.30.0/24 [1/0] via 192.168.3.2 這裡我已經配好了。
router(config)#ip route 192.168.30.0 255.255.255.0 192.168.3.2
2:在r1上配置到192.168.10.0/24的靜態路由,在r0上夜應該配置到192.168.10.0/24的靜態路由
router(config)#ip route 192.168.10.0 255.255.255.0 192.168.3.2
r0配置靜態路由
router(config)#ip route 192.168.10.0 255.255.255.0 192.168.2.2
最後在r2配置回程的靜態路由
在r1和r0 上配置自己不知道的網段。
實驗三: 三颱路由器r1,r2,r3分別直連三個網路1.0.
0.0/8 2.0.
0.0/8 3.0.
0.0/8 ,且每台路由器上都配置了預設路由, 指向順時針方向的相鄰路由器(r1-r3 r2-r1 r3-r2
請問:路由器r1直連的客戶端能否 ping通路由器r2 和r3的客戶端
這個網路有可能產生環路嗎,當路由器訪問那些位址時 產生環路?
如何子介面配置ip埠多個ip位址路由器
試試子ip行不行,ar28的沒試過,交換機可以 quidway inte ce ether 0 0 1 quidway ether 0 0 1 ip address x.x.x.x x.x.x.x sub 示例 華為 子介面一般用於單臂路由。routera相關配置 1.建立 進入 e0.1子介面 r...
如何設定路由器,怎麼設定路由器的IP位址
工具 原料 路由器,網線,寬頻貓,電腦。路由器的無線wifi能夠正常使用,需要對路由器進行系統的設定才可以的,設定步驟如下 1 首先路由器和寬頻貓電腦連線,如圖 2 然後開啟瀏覽器輸入路由器的管理位址和登入密碼。3 登入後台後,點選設定嚮導,然後根據嚮導指示填寫相應的引數即可。5 寬頻引數設定完後,...
如何查路由器的ip位址
親,您好,如果想檢視路由器的ip位址,可以登入或者。親,請問您家的路由器是什麼品牌的?提問。mercury 那您在瀏覽器中輸入進去就可以進行設定的。提問。我想說的是我重置以後但是不知道重置密碼,現在你給的這個我也進不去,ip查詢也不對。親,重置路由器不需要密碼的。親,方便截個圖來看看嗎,我不知道您是...