<delect id="sj01t"></delect>
  1. <em id="sj01t"><label id="sj01t"></label></em>
  2. <div id="sj01t"></div>
    1. <em id="sj01t"></em>

            <div id="sj01t"></div>
            試題

            計算機四級《網絡工程師》復習考點

            時間:2025-02-03 08:58:41 試題 我要投稿

            計算機四級《網絡工程師》復習考點

              同《網絡工程師》是計算機四級考試科目之一,同學們在復習是要熟悉考試的考點,有針對性地進行備考。下面是百分網小編為大家搜索整理的關于《網絡工程師》復習考點,歡迎參考練習,希望對大家備考有所幫助!想了解更多相關信息請持續關注我們應屆畢業生考試網!

              1、進入特權模式 enable

              router > enable

              router #

              2、進入全局配置模式 configure terminal

              router > enable

              router #configure terminal

              router (conf)#

              3、交換機命名 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、進入路由器某一端口 interface fastehernet 0/17 以17端口為例

              router > enable

              router #configure terminal

              router(conf)#hostname routerA

              routerA (conf)# interface fastehernet 0/17

              routerA (conf-if)#

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

              router > enable

              router #configure terminal

              router(conf)#hostname routerA

              routerA (conf)# interface fastehernet 0/17.1

              7、設置端口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 配置交換機端口ip和子網掩碼

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

              routerA (conf-if)#exit

              8、查看命令 show

              router > enable

              router # show version 察看系統中的所有版本信息

              show interface vlan 1 查看交換機有關ip 協議的配置信息

              show running-configure 查看交換機當前起作用的配置信息

              show interface fastethernet 0/1 察看交換機1接口具體配置和統計信息

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

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

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

              9、路由器telnet遠程登錄設置

              router>enable

              router #configure terminal

              router (conf)#hostname routerA

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

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

              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 設置0-4 個用戶可以telnet遠程登陸

              routerA (conf-line)#login

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

              10、配置串口參數

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

              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、靜態路由的配置

              配置路由器A的主機名和接口參數

              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端口為與主機的連接端口

              routerA(conf-if)#ip address 192.168.1.2 255.255.255.0

              routerA(conf-if)#no shutdown

              配置路由器A的靜態路由表

              routerA(conf)#ip router 192.168.3.0 255.255.255.0 192.168.2.2

              在routerA上配置默認路由

              routerA(conf)#ip route 0.0.0.0 0.0.0.0 192.168.2.2

              routerA(conf)#ip classless

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

              routerA(conf)#router rip

              routerA(conf)#network 192.168.1.0

              routerA(conf)#network 192.168.2.0

              12、動態路由的配置

              router>enable

              router#configure terminal

              routerA (config)#route ospf 10配置ospf進程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的網段通過router(config)#access-list 1 deny 192.168.10.0 2.0.0.255 拒絕192.168.10.2的主機通過

              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創建名為cisco的命名訪問控制列表

              特別注意:

              1、 當目的網絡不可達時,路由表的跳數顯示為16

              2、 Bandwidth的帶寬戴維為kbps

              3、 encapsulation表示封裝

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

              5、 配置ospf協議發布直連網段時會用的是反掩碼

              6、 劃分子網的時候需要子網掩碼

              DHCP要領

              1、 DHCP協議的前身是在傳輸層使用UDP協議的BOOTP協議,是BOOTP的增強版本。

              2、 客戶機以TCP/IP方式向DHCP服務器發送DHCP DISCOVER報文,報文的源地址為0.0.0.0。

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

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

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

              6、 在windows 2003中,DHCP服務器默認的租約期限是8天。

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

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

              dhcpd.conf文件有二大部分,分別是全局配置和局部配置。當全局配置與局部配置發生沖突時,局部配置優先級更高。

              ●常用參數:

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

              ●none:不支持。

              ●interim:DNS互動更新模式。

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

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

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

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

              ●常用聲明:

              ●subnet 網絡號 netmask 子網掩碼 {…..}:定義作用域。

              ●range 起始IP 結束IP:動態IP地址范圍。

              ●常用選項:

              ●option routes IP地址:默認網關,該選項可以在全局配置、局部配置均可使用。

              ●option subnet-mask 子網掩碼:默認子網掩碼,該選項可以在全局配置、局部配置均可使用。

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

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

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

              ●下面我們來看一個配置實例:

              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;

              }

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

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

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

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

            【計算機四級《網絡工程師》復習考點】相關文章:

            2016年計算機四級網絡工程師復習考點07-22

            計算機四級網絡工程師考點02-24

            計算機四級網絡工程師考點習題01-04

            計算機四級《網絡工程師》考點習題04-30

            計算機四級考試網絡工程師考點:網絡管理07-22

            計算機四級網絡工程師考點練習試題05-12

            計算機四級考試《網絡工程師》知識考點01-24

            2017計算機四級《網絡工程師》考點習題06-24

            計算機四級考試網絡工程師考點:網絡互連技術07-24

            <delect id="sj01t"></delect>
            1. <em id="sj01t"><label id="sj01t"></label></em>
            2. <div id="sj01t"></div>
              1. <em id="sj01t"></em>

                      <div id="sj01t"></div>
                      黄色视频在线观看