『壹』 使用什麼命令可以查看路由器的硬體(CPU.內存)和介面信息
cpu :sh proc cpu
介面:sh ip int b
內存:sh ver
『貳』 思科路由器的虛擬子介面配置本徵vlan怎麼配啊命令是什麼
1、serial線對聯,使用出口靜態路由配置。
『叄』 華為路由器interface GigabitEthernet 0/0/1下配置了多個子介面,用什麼命令能查看所有子介面的信息
display interface | inc 0/0/1.
display interface br | inc 0/0/1.
display cur | inc 0/0/1.
這幾個都包含了。
『肆』 路由器里的常用命令
路由器常用的命令如下:
1、Router>(用戶模式)、Router>enable (進入特權模式)、Router#(特權模式) 、Router#configure terminal(進入全局配置模式) 、Router(config)# (全局配置模式) 。
2、Router(config)#hostnameXXX (設置路由器主機名) 、Router(config)#enable password 123(設置特權非密口令) 、Router(config)#enable secret123 (設置特權加密口令) 。
3、Router(config)#interface f0/6 (進入埠配置模式 ) 、Router(config-if)# (埠配置模式) 、Router(config)#line consode 0 (進入控制台埠)。
4、Router(config)#line vty 0 4(進入虛擬終端配置模式) 、Router(config- line)# (虛擬終端配置模式) 、Router(config)#router rip (進入rip路由協議配置模式)。
5、Router(config-router) ( rip路由協議配置模式)、Router(config-router)network 159.105.0.0(設置參與RIP協議的網路地址,不支持可變長掩碼,只有IP網路號)。
6、Router(config)#router ospf 63(進入ospf路由協議配置模式)、Router(config-router) # (ospf路由協議配置模式)。
7、Router#write memory(保存配置到路由器的NVRAM中) 、Router#write network tftp (保存配置到 TFTP伺服器中)。
路由器原理:
路由器通過路由決定數據的轉發。轉發策略稱為路由選擇(routing),這也是路由器名稱的由來(router,轉發者)。
作為不同網路之間互相連接的樞紐,路由器系統構成了基於TCP/IP 的國際互聯網路Internet的主體脈絡,也可以說,路由器構成了Internet的骨架。它的處理速度是網路通信的主要瓶頸之一,它的可靠性則直接影響著網路互連的質量。
『伍』 7609路由器查子卡信息命令
router (config-if) #int f0/0.1;。
router (config -subif. 1) #ip address;設置子介面IP。
『陸』 思科路由器查看配置的命令是什麼
思科路由器查看配置的命令是router#show run。
路由器顯示命令:
router#show interface ;顯示介面信息
router#show ip route ;顯示路由信息
router#show cdp nei ;顯示鄰居信息
router#reload ;重新起動
路由器口令設置:
router>enable ;進入特權模式
router#config terminal ;進入全局配置模式
router(config)#hostname ;設置交換機的主機名
router(config)#enable secret xxx ;設置特權加密口令
router(config)#enable password xxb ;設置特權非密口令
router(config)#line console 0 ;進入控制台口
router(config-line)#line vty 0 4 ;進入虛擬終端
router(config-line)#login ;要求口令驗證
router(config-line)#password xx ;設置登錄口令xx
router(config)#(Ctrl+z) ; 返回特權模式
router#exit ;返回命令
(6)路由器查看子介面信息的命令擴展閱讀:
路由器配置:
router(config)#int s0/0 ;進入Serail介面
router(config-if)#no shutdown ;激活當前介面
router(config-if)#clock rate 64000 ;設置同步時鍾
router(config-if)#ip address ;設置IP地址
router(config-if)#ip address second ;設置第二個IP
router(config-if)#int f0/0.1 ;進入子介面
router(config-subif.1)#ip address ;設置子介面IP
router(config-subif.1)#encapsulation dot1q ;綁定vlan中繼協議
router(config)#config-register 0x2142 ;跳過配置文件
router(config)#config-register 0x2102 ;正常使用配置文件
router#reload ;重新引導
參考資料來源:Cisco-思科路由器
『柒』 使用什麼命令查看路由器各個介面的信息
路由器介面就是用來連接不同的網路的物理介面,路由器介面配置的查詢命令每個廠商都是有區別的:
思科中興設備用show interface all;
華為華三設備用display interface ;
『捌』 如何查看路由器埠命令
你可以在登陸設備後 進入特權模式。
執行show ip interface brief命令來查看埠狀態。
或者show interface 埠類型 可以查看能詳細的狀態信息。
『玖』 技術人員可以通過什麼命令來查看路由器行口配置的ip地址
你好,進入埠,display this,就可以查看該埠的ip。或者display cu interface。
『拾』 思科路由器子介面怎麼設置
設置代碼如下:
S1:
Switch>enable
Switch#vlandatabase
Switch(vlan)#vlan 30
Switch(vlan)#vlan 40
Switch# configure terminal
Switch(config)#int fastEthernet 0/1
Switch(config-if)#switchport access vlan 30
Switch(config-if)#int f0/2
Switch(config-if)#switchport access vlan 40
Switch(config-if)#int f 0/24
Switch(config-if)#switchport mode trunk
Switch(config-if)#switchport trunk allowed vlan all
子介面的代碼
RT1:
Router>enable
Router#configure terminal
Router(config)#int fastEthernet 0/0.1
Router(config-subif)#encapsulation dot1Q 30
Router(config-subif)#ip add 172.16.3.254 255.255.255.0
Router(config-subif)#int f 0/0.2
Router(config-subif)#encapsulation dot1Q 40
Router(config-subif)#ip add 172.16.4.254 255.255.255.0
Router(config-subif)#int f 0/0
Router(config-if)#no shutdown
(10)路由器查看子介面信息的命令擴展閱讀:
思科路由器常見命令:
router>enable 進入特權模式
router#config terminal 進入全局配置模式
router(config)#hostname 設置交換機的主機名
router(config)#enable secret xxx 設置特權加密口令
router(config)#enable password xxb 設置特權非密口令
router(config)#line console 0 進入控制台口
router(config-line)#line vty 0 4 進入虛擬終端
router(config-line)#login 要求口令驗證
router(config-line)#password xx 設置登錄口令xx
router(config)#(Ctrl+z) 返回特權模式
router#exit 返回命令