六月丁香五月婷婷,丁香五月婷婷网,欧美激情网站,日本护士xxxx,禁止18岁天天操夜夜操,18岁禁止1000免费,国产福利无码一区色费

學習啦>學習電腦>網(wǎng)絡知識>路由器>路由器知識大全>

cisco路由器配置命令

時間: 權(quán)威878 分享

  cisco路由器是全世界領(lǐng)先的設備,而且配置cisco路由器的方法多數(shù)都是利用命令,下面學習啦小編為大家整理了一些cisco路由器配置命令,希望對您有所幫助!

  cisco路由器配置命令知識

  所處狀態(tài)各類

  router>

  用戶處于用戶命令狀態(tài),可以查看網(wǎng)絡和主機

  router#

  用戶處于特權(quán)模式,可以查看狀態(tài),還可以看到和更改路由器的設置內(nèi)容

  router(config)#

  全局配置狀態(tài),可以設置路由的全局參數(shù)

  router(config-if)#;router(config-line)#;router(config-router)#.....

  處于局部配置狀態(tài),可以設置路由的局部參數(shù)

  配置端口ip

  命令

  en

  config t //全局模式

  interface f0/0

  ip address 192.168.1.1 255.255.255.0 //設置端口ip

  no shu //生效

  exit

  interface f0/1

  ip address 192.168.10.1 255.255.255.0

  no shu

  exit

  end

  disable

  配置靜態(tài)路由

  命令

  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接口

  end

  show ip route //可以看到前面標明S,即為靜態(tài)路由

  配置動態(tài)路由(RIP)

  命令

  en

  config t //全局模式

  no route rip //禁止rip協(xié)議

  route rip

  network 192.168.1.0 //network參數(shù)為路由的兩個端口對應的網(wǎng)絡地址

  network 192.168.10.0

  exit

  end

  disable

  配置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 //配置網(wǎng)絡

  dns-server 61.177.7.1 //配置dns服務器

  exit

  end

  disable

  可以通過 ip helper-address指定 DHCP中繼代理

  interface 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 //全局模式

  interface f0/0

  ip address 192.168.1.1 255.255.255.0

  ip nat inside //內(nèi)部端口

  no shu

  exit

  interface 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路由器配置命令的相關(guān)文章

1.Cisco路由器配置命令全攻略

2.思科路由器配置命令

3.思科路由器常見的配置命令有哪些

4.CISCO路由器配置命令狀態(tài)

5.思科路由器基本配置教程

1787688