cisco路由器配置入門知識(基礎)
cisco路由配置基礎
剛剛接觸cisco路由配置,下面是學習的筆記,感覺命令還是多敲才能熟悉
一、 所處狀態各類
router>
使用者處於使用者命令狀態,可以檢視網路和主機
router#
使用者處於特權模式,可以檢視狀態,還可以看到和更改路由器的設定內容
router(config)#
全域性配置狀態,可以設定路由的全域性引數
router(config-if)#;router(config-line)#;router(config-router)#…
處於區域性配置狀態,可以設定路由的區域性引數
二、配置埠ip
命令en
config t //全域性模式
inte***ce f0/0
ip address 192.168.1.1 255.255.255.0 //設定埠ip
no shu //生效
exit
inte***ce f0/1
ip address 192.168.10.1 255.255.255.0
no shu
exit
enddisable
三、配置靜態路由
命令en
config t //全域性模式
ip route 192.168.100.0 255.255.255.0 192.168.10.2 //到192.168.100.0/24通過192.168.10.2介面
endshow ip route //可以看到前面標明s,即為靜態路由
四、配置動態路由(rip)
命令en
config t //全域性模式
no route rip //禁止rip協議
route rip
network 192.168.1.0 //network引數為路由的兩個埠對應的網路位址
network 192.168.10.0
exit
enddisable
五、配置dhcp
命令en
config t //全域性模式
ip dhcp excluded-address 192.168.1.1 //需要排除的ip位址
ip dhcp pool gr-dhcp-pool //ip位址池名
default-server 192.168.1.1 //指定dhcp伺服器
network 192.168.1.0 255.255.255.0 //配置網路
dns-server 61.177.7.1 //配置dns伺服器
exit
enddisable
可以通過 ip helper-address指定 dhcp中繼**
inte***ce fastethernet0/1
ip address 192.168.1.1 255.255.255.0
ip helper-address 192.168.10.2 //配置dhcp中繼**,dhcp
六、配置nat
命令en
config t //全域性模式
inte***ce f0/0
ip address 192.168.1.1 255.255.255.0
ip nat inside //內部埠
no shu
exit
inte***ce f0/1
ip address 192.168.10.1 255.255.255.0
ip nat outside //外部埠
no shu
exit
access-list 1 permit any //設定乙個可訪問列表
ip nat pool gr-nat-pool 192.168.10.3 192.168.10.254 netmask 255.255.255.0 //設定分配池
ip nat inside resource list 1 pool gr-nat-pool overload
show ip nat traslations
clear ip nat traslation *
七、其它
sh running-config //顯示當前執行配置
sh startup-config //顯示開機配置
sh ip route //顯示路由
sh nat traslations //顯示nat當前情況
cisco路由器配置
cisco路由器配置的幾個常用命令 router enable 進入特權模式 router conf t 進入配置模式 router config int fa0 0 進入fa0 0介面 router config if ip add 192.168.1.1 255.255.255.0 給fa0 0...
CISCO路由器DHCP 配置
實驗拓撲 基本配置 r5充當dhcp 伺服器 ip dhcp pool vlan146 network 155.1.146.0 24 default router 155.1.146.4 dns 202.106.46.151 exit ip dhcp excluded address 155.1.1...
CISCO路由器配置基礎 3
4 常用廣域網協議的配置 常用廣域網協議主要有高階資料鏈路控制協議 hdlc 綜合服務數字網 isdn 點對點協議 ppp 分組交換協議 x.25 和幀中繼 frame relay 等。路由器的串列埠提供與廣域網的連線,但與 isdn 的連線需通過 isdn 介面。廣域網協議的配置方法如下 配置hd...