亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

試題

計算機(jī)四級《網(wǎng)絡(luò)工程師》復(fù)習(xí)考點(diǎn)

時間:2024-07-12 07:37:00 試題 我要投稿

計算機(jī)四級《網(wǎng)絡(luò)工程師》復(fù)習(xí)考點(diǎn)

  同《網(wǎng)絡(luò)工程師》是計算機(jī)四級考試科目之一,同學(xué)們在復(fù)習(xí)是要熟悉考試的考點(diǎn),有針對性地進(jìn)行備考。下面是百分網(wǎng)小編為大家搜索整理的關(guān)于《網(wǎng)絡(luò)工程師》復(fù)習(xí)考點(diǎn),歡迎參考練習(xí),希望對大家備考有所幫助!想了解更多相關(guān)信息請持續(xù)關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!

  1、進(jìn)入特權(quán)模式 enable

  router > enable

  router #

  2、進(jìn)入全局配置模式 configure terminal

  router > enable

  router #configure terminal

  router (conf)#

  3、交換機(jī)命名 hostname routera 以routerA為例

  router > enable

  router #configure terminal

  router(conf)#hostname routerA

  routera (conf)#

  4、配置使能口令 enable password cisco 以cisco為例

  router > enable

  router #configure terminal

  router(conf)#hostname routerA

  routerA (conf)# enable password cisco

  5、配置使能密碼 enable secret ciscolab 以cicsolab為例

  router > enable

  router #configure terminal

  router(conf)#hostname routerA

  routerA (conf)# enable secret ciscolab

  6、進(jìn)入路由器某一端口 interface fastehernet 0/17 以17端口為例

  router > enable

  router #configure terminal

  router(conf)#hostname routerA

  routerA (conf)# interface fastehernet 0/17

  routerA (conf-if)#

  進(jìn)入路由器的某一子端口 interface fastethernet 0/17.1 以17端口的1子端口為例

  router > enable

  router #configure terminal

  router(conf)#hostname routerA

  routerA (conf)# interface fastehernet 0/17.1

  7、設(shè)置端口ip地址信息

  router > enable

  router #configure terminal

  router(conf)#hostname routerA

  routerA(conf)# interface fastehernet 0/17 以17端口為例

  routerA (conf-if)#ip address 192.168.1.1 255.255.255.0 配置交換機(jī)端口ip和子網(wǎng)掩碼

  routerA (conf-if)#no shut 是配置處于運(yùn)行中

  routerA (conf-if)#exit

  8、查看命令 show

  router > enable

  router # show version 察看系統(tǒng)中的所有版本信息

  show interface vlan 1 查看交換機(jī)有關(guān)ip 協(xié)議的配置信息

  show running-configure 查看交換機(jī)當(dāng)前起作用的配置信息

  show interface fastethernet 0/1 察看交換機(jī)1接口具體配置和統(tǒng)計信息

  show mac-address-table 查看mac地址表

  show mac-address-table aging-time 查看mac地址表自動老化時間

  show controllers serial + 編號 查看串口類型 show ip router 查看路由器的路由表

  9、路由器telnet遠(yuǎn)程登錄設(shè)置

  router>enable

  router #configure terminal

  router (conf)#hostname routerA

  routerA (conf)#enable password cisco 以cisco為特權(quán)模式密碼

  routerA (conf)#interface fastethernet 0/1 以17端口為telnet遠(yuǎn)程登錄端口

  routerA (conf-if)#ip address 192.168.1.1 255.255.255.0

  routerA (conf-if)#no shut

  routerA (conf-if)#exit

  routerA (conf)line vty 0 4 設(shè)置0-4 個用戶可以telnet遠(yuǎn)程登陸

  routerA (conf-line)#login

  routerA (conf-line)#password edge 以edge為遠(yuǎn)程登錄的用戶密碼

  10、配置串口參數(shù)

  兩臺路由器通過串口連接需要一個做為DTE,一個做為DCE。DCE設(shè)備要向DTE設(shè)備提供時鐘頻率和帶寬。

  DCE配置:

  router>enable

  router #configure terminal

  router (conf)#hostname routerA

  routerA(conf)#interface serial 0/0

  routerA(conf_if)#clock rate 64000 提供時鐘頻率為64000

  routerA(conf_if)#bandwidth 64 提供帶寬為64

  DTE配置:路由器串口配置ip地址

  router>en

  router #configure terminal

  router (conf)#hostname routerB

  routerB(conf)#interface serial 0/0

  routerB(conf_if)#ip address 192.168.1.1 255.255.255.0

  11、靜態(tài)路由的配置

  配置路由器A的主機(jī)名和接口參數(shù)

  router>enable

  router#configure terminal

  router(conf)#hostname routerA

  routerA(conf)#interface fastethernet 0/1 路由器A的1端口為兩路由器的連接端口

  routerA(conf-if)#ip address 192.168.2.1 255.255.255.0

  routerA(conf-if)#no shutdown

  routerA(conf-if)#exit

  routerA(conf)# interface fastethernet 0/0 路由器A的0端口為與主機(jī)的連接端口

  routerA(conf-if)#ip address 192.168.1.2 255.255.255.0

  routerA(conf-if)#no shutdown

  配置路由器A的靜態(tài)路由表

  routerA(conf)#ip router 192.168.3.0 255.255.255.0 192.168.2.2

  在routerA上配置默認(rèn)路由

  routerA(conf)#ip route 0.0.0.0 0.0.0.0 192.168.2.2

  routerA(conf)#ip classless

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

  routerA(conf)#router rip

  routerA(conf)#network 192.168.1.0

  routerA(conf)#network 192.168.2.0

  12、動態(tài)路由的配置

  router>enable

  router#configure terminal

  routerA (config)#route ospf 10配置ospf進(jìn)程id

  routerA (config-router)#network 192.168.0.0 0.0.0.255 area 0

  13、訪問控制列表配置

  router(config-if)#ip access-group 1 in 訪問列表的入

  router(config-if)#ip access-group 1 out 訪問列表的出

  router(config)#access-list 1 premit 192.168.10.0 0.0.0.255 允許192.168.10.0的網(wǎng)段通過router(config)#access-list 1 deny 192.168.10.0 2.0.0.255 拒絕192.168.10.2的主機(jī)通過

  router(config)#access-list 1 premit any any表示0.0.0.0 255.255.255.255

  router(config)#access-list 1 premit host 172.30.16.29 host表示0.0.0.0

  router(config)#access-list 101 deny tcp 172.16.4.0 0.0.0.255 172.16.3.0 0.0.0.255 eq 21

  拒絕來自172.16.4.0去往172.16.3.0的FTP流量

  router(config)#ip access-list extended cisco創(chuàng)建名為cisco的命名訪問控制列表

  特別注意:

  1、 當(dāng)目的網(wǎng)絡(luò)不可達(dá)時,路由表的跳數(shù)顯示為16

  2、 Bandwidth的帶寬戴維為kbps

  3、 encapsulation表示封裝

  4、 pos接口的幀格式使用SDH:pos framing sdh

  5、 配置ospf協(xié)議發(fā)布直連網(wǎng)段時會用的是反掩碼

  6、 劃分子網(wǎng)的時候需要子網(wǎng)掩碼

  DHCP要領(lǐng)

  1、 DHCP協(xié)議的前身是在傳輸層使用UDP協(xié)議的BOOTP協(xié)議,是BOOTP的增強(qiáng)版本。

  2、 客戶機(jī)以TCP/IP方式向DHCP服務(wù)器發(fā)送DHCP DISCOVER報文,報文的源地址為0.0.0.0。

  3、 在位客戶機(jī)分配地址知其奧妙,還必須先激活作用域。

  4、 DHCP服務(wù)器為一個客戶機(jī)分配固定的IP地址時,需要將IP和客戶機(jī)的MAC地址綁定。

  5、 在DHCP服務(wù)器給客戶機(jī)分配地址租約后,不能主動收回地址租約。

  6、 在windows 2003中,DHCP服務(wù)器默認(rèn)的租約期限是8天。

  DHCP配置在rhel 5實(shí)現(xiàn)DHCP需要安裝dhcp-3.0.5-7.el5.i386.rpm,其配置文件是/etc/dhcpd.conf,租約數(shù)據(jù)庫文件是 ar b/dhcpd/dhcpd.leases。

  在第一次打開該文件時,只告知一個例子文件的路徑,可將該例子覆蓋該配置文件再進(jìn)行修改。

  dhcpd.conf文件有二大部分,分別是全局配置和局部配置。當(dāng)全局配置與局部配置發(fā)生沖突時,局部配置優(yōu)先級更高。

  ●常用參數(shù):

  ●ddns-update-style (none|interim|ad-hoc):定義所支持的DNS動態(tài)更新類型,該參數(shù)必選且必須放在第一行且只能在●全局配置中使用。

  ●none:不支持。

  ●interim:DNS互動更新模式。

  ●ad-hoc:特殊DNS更新模式。

  ●ignore-client-updates:忽略客戶端更新,該參數(shù)只能在全局配配置中使用。

  ●default-lease-time:默認(rèn)IP租約時間,單位秒,該參數(shù)可以在全局配置、局部配置均可使用。

  ●mas-lesase-time:客戶端IP租約時間的最大值,單位秒,該參數(shù)可以在全局配置、局部配置均可使用。

  ●常用聲明:

  ●subnet 網(wǎng)絡(luò)號 netmask 子網(wǎng)掩碼 {…..}:定義作用域。

  ●range 起始IP 結(jié)束IP:動態(tài)IP地址范圍。

  ●常用選項:

  ●option routes IP地址:默認(rèn)網(wǎng)關(guān),該選項可以在全局配置、局部配置均可使用。

  ●option subnet-mask 子網(wǎng)掩碼:默認(rèn)子網(wǎng)掩碼,該選項可以在全局配置、局部配置均可使用。

  ●option domain-name-servers:DNS服務(wù)器地址,該選項可以在全局配置、局部配置均可使用。

  ●option domain-name:DNS后綴,該選項可以在全局配置、局部配置均可使用。

  ●option time-offset:為客戶端指定格林威治時間領(lǐng)銜時間,單位秒,該選項可以在全局配置、局部配置均可使用。

  ●下面我們來看一個配置實(shí)例:

  ddns-update-style interim;

  ignore client-updates;

  option domain-name“demo.zqin”;

  subnet 192.168.159.0 netmask 255.255.255.0 {

  option routers 192.168.159.18;

  option subnet-mask255.255.255.0;

  option domain-name-servers192.168.159.1;

  option domain-name“example.zqin”;

  option time-offset-18000;

  range dynamic-bootp 192.168.159.20 192.168.100.250;

  default-lease-time 21600;

  max-lease-time 43200;

  }

  上述配置實(shí)際上只需在rhel中所提供的例子文件中改幾處即可,在編寫配置文件時需注意以下幾個問題:

  ●每行必須以分號結(jié)尾(如不用分號結(jié)尾,在啟動dhcpd時是不會報錯的,只能通過查看日志文件ar/log/message得知)。

  ●局部配置必須包含在一對中括號之間。

  ●上面的例子中全局部分定義了參數(shù)option domain-name,在局部也定義了,這個在實(shí)際工作是沒有必要的,這里只是為了說明局部參數(shù)的優(yōu)先級高于全局部分

【計算機(jī)四級《網(wǎng)絡(luò)工程師》復(fù)習(xí)考點(diǎn)】相關(guān)文章:

2016年計算機(jī)四級網(wǎng)絡(luò)工程師復(fù)習(xí)考點(diǎn)07-22

計算機(jī)四級網(wǎng)絡(luò)工程師考點(diǎn)練習(xí)試題09-02

計算機(jī)四級考試網(wǎng)絡(luò)工程師常見考點(diǎn)04-30

2017計算機(jī)四級信息安全工程師復(fù)習(xí)考點(diǎn)大全10-11

計算機(jī)四級考試網(wǎng)絡(luò)工程師考點(diǎn):網(wǎng)絡(luò)操作系統(tǒng)06-27

2013年計算機(jī)四級考試網(wǎng)絡(luò)工程師考點(diǎn)(1)07-12

2015計算機(jī)四級考試《網(wǎng)絡(luò)工程師》復(fù)習(xí)重點(diǎn)(五)09-21

2015計算機(jī)四級考試《網(wǎng)絡(luò)工程師》復(fù)習(xí)重點(diǎn)(六)07-11

2015計算機(jī)四級考試《網(wǎng)絡(luò)工程師》復(fù)習(xí)重點(diǎn)(四)08-24

2015計算機(jī)四級考試《網(wǎng)絡(luò)工程師》復(fù)習(xí)重點(diǎn)(七)04-22