NEW
Font size
Worksheets電腦
Total questions: 25
Worksheet time: 13mins
IPv4位址及所搭配的遮罩二進位原貌全長多少位元 (bits) 呢?
32 位元
128 位元
64
0
IPv6位址二進位原貌全長多少位元 (bits) 呢?
128 位元
32 位元
IPv6位址的結構分為兩部分,後半段為介面 ID,代表什麼呢?
可獨一無二地識別出一台主機或一張網路介面卡
代表網路的部分,也就是這個
IPv6 位址所屬的網路
若希望遠端連入一台交換器,我們應該怎麼做?
為交換器的 SVI (交換器虛擬介面) 配置管理性 IP 位址,即可遠端連入
什麼都不用做,即可遠端連入
IPv6位址的結構分為兩部分,前半段為 Prefix,代表什麼呢?
代表網路的部分,也就是這個
IPv6 位址所屬的網路
可獨一無二地識別出一台主機或一張網路介面卡
IPv4位址有以下的結構:前半段是 network portion (代表網路的部分) 以及後半段是 host portion (代表主機的部分)。
對
不 對
在 Cisco IOS 中,如果我們因為打錯指令而不小心被卡在 DNS 查詢程序中時,可以使用哪一種鍵盤組合中斷程序?
Ctrl-Shift-6
Ctrl-c
Ctrl-d
DNS 伺服器
(Domain Name System 伺服器) 的用途為何?
將 domain
name (域名,如:www.cisco.com) 轉譯為對應的 IP 位址 (或是反向轉譯)
自動配發 IP
位址給終端設備
如果想看目前命令模式中有哪些「te
開頭」的指令,可以怎麼問 Cisco IOS?
te?
(te 與 ? 之間不要有任何空格)
te
?
(te 與 ? 之間要空一格半形空格)
可以使用哪一招來找出
clock set 後面必須跟的關鍵字或引數呢?
clock set ?
(set 與 ? 之間要空一格半形空格)
clock set?
(set 與 ? 之間不要空一格半形空格)
針對一台
Cisco 交換器,假設目前在最外層的 user EXEC mode,我們應如何將這台交換器命名為「Sw-1」呢?
Switch>
enable
Switch# configure terminal
Switch(config)# hostname Sw-1
Switch>enable
Switch# hostname Sw-1
Switch>hostname Sw-1
針對一台
Cisco 交換器,假設目前在第二層的 privileged EXEC mode,我們應如何將這台交換器重新回復為其出廠預設名稱呢?
S2#configure terminal
S2(config)# no hostname
S2# enable
S2(config)# no hostname
請進行交換器
SVI 配置,IP 位址:192.168.2.3,遮罩:255.255.255.0,啟用介面,然後一口氣回到 # 模式。
S1>enable
S1# configure terminal
S1(config)# interface vlan 1
S1(config-if)# ip address 192.168.2.3 255.255.255.0
S1(config-if)# no shutdown
S1(config-if)# end
S1>interface vlan 1
S1(config-if)# ip address 192.168.2.3 255.255.255.0
S1(config-if)# no shutdown
S1(config-if)# end
S1>enable
S1# configure terminal
S1(config)# interface vlan 1
S1(config-if)# ip address 192.168.2.3 255.255.255.0
S1(config-if)# end
S1>
enable
S1# configure terminal
S1(config)# interface vlan 1
S1(config-if)# ip address 192.168.2.3 255.255.255.0
S1(config-if)# no shutdown
S1(config-if)# exit
您希望針對交換器
S1 的 console 埠存取,進行密碼保護。也就是,您希望所有人員,在透過 console 埠進入第一層 user EXEC mode
之前,都需要面對第一道卡關密碼「cisco」,通過了,才能進入 user EXEC mode。請問如何依序下指令完成?
S1>
enable
S1# configure terminal
S1(config)# line console 0
S1(config-line)# password cisco
S1(config-line)# login
S1>
enable
S1# configure terminal
S1(config)# line console 0
S1(config-line)# password cisco
S1>
enable
S1# configure terminal
S1(config)# line vty 0 15
S1(config-line)# password cisco
S1(config-line)# login
S1>
line console 0
S1(config-line)# password cisco
S1(config-line)# login
您希望針對交換器
S1 的 privileged/特權 EXEC mode (enable mode),進行加密 (secret)
密碼保護。也就是,您希望所有人員,在進入第二層 privileged EXEC mode 之前,都需要面對第二道卡關密碼「class」,通過了,才能進入
privileged EXEC mode。假設目前您在 (config-line)# 模式,請問如何依序下指令完成?
S1(config-line)#
exit
S1(config)# enable secret class
S1(config-line)#
end
S1(config)# enable secret class
S1(config-line)#
enable secret class
為了提高安全性,使
startup-config 以及 running-config 兩個設定檔內的明文密碼被弱加密,假設目前您在 > 模式,應該怎麼依序下指令完成呢?
S1>
enable
S1# configure terminal
S1(config)# service password-encryption
S1>
service password-encryption
S1>
enable
S1# service password-encryption
S1>
enable
S1# configure terminal
S1(config)# enable secret class
在網路上傳輸的設備密碼,會受到
service password-encryption 指令的弱加密保護嗎?
不會。事實上,此指令只會弱加密保護
startup-config 以及 running-config 內的明文密碼。
會
設立標語訊息
(banner messages) 警告存取設備的人,最主要目的是什麼?
法律用意
實質加密保護
現在我們希望為
Cisco 交換器 S1 設定一則警告標語「Authorized Access Only!」警示所有想要接入設備的人,請問從 >
模式開始,應該如何依序下指令?
S1>
enable
S1# configure terminal
S1(config)# banner motd #Authorized Access Only!#
S1>
banner motd #Authorized Access Only!#
S1>
enable
S1# banner motd #Authorized Access Only!#
針對 Cisco
交換器 S1,目前在 > 模式,想看 running-config 的內容,應如何依序下指令呢?
S1> enable
S1# show run
S1> show run
針對 Cisco
交換器 S1,目前在 (config)# 模式,想把 running-config 儲存至
startup-config,然後重新開機,應如何依序下指令呢?
S1(config)#
end
S1# copy run start
S1# reload
S1(config)#
copy run start
S1(config)# reload
S1(config)#
end
S1# reload
若想移除(擦掉)在
NVRAM 中的 startup-config,指令為何?
erase startup-config
delete startup-config
若想檢視
Cisco 設備各介面 IP 及狀態的簡短(brief)資訊,應使用哪一道指令?
show ip interface brief
ipconfig
我們現在希望從外部導入一份
config 內容至 Cisco 交換器 Switch 中成為 running-config,請選出正確的做法。
Switch>
enable
Switch# configure terminal
Switch(config)# 在此複製貼上外部設備的 config內容
根本無法把外部設備的
config 內容導入 Cisco 設備中
如果 IPv4
位址為 120.105.98.23,而其遮罩為 255.255.255.0,請問這個 IPv4 位址是屬於哪個網路呢?
120.105.98.0
120.105.0.0
120.0.0.0
