10:28:00 下午
By 洋蔥爸比 Tosian Yang
為了撥接到客戶那邊去處理點問題,趕緊翻出之前的舊版 CISCO-vpnclient-win-msi-4.7.00.0533-k9 出來裝,裝好之後,重開機,啊ㄌㄟ,救人喔....怎麼無線網路就起不來了,再也掃不到任何無線 AP 了,剛剛還在用的啊,天哪,就連有線的區域網路也掛了,完全沒有任何 IP,就算用 ipconfig /renew 也直接回報網路裝置有問題,居然還無法移除...幸好我有安裝新程式之前設定還原點的習慣,趕緊還原到剛剛還沒裝之前的狀態,但,怎麼都不死心,於是上網去抓了新一點的版本 CISCO vpn-client 5.0.03.0560 試試,沒想到,結果一樣,二話不說,還原再試一次,再去找更新的版本,花了一個多小時試到 CISCO-vpnclient-win-msi-5.0.05.0280-k9 的版本還是不行,再次上網去查詢了一下,才發現原來是 DNE 造成的問題啊,只要先 fix 完 DNE 的問題再安裝 CISCO VPN Client 就沒問題了,趕緊到
Citrix DNE Support 的頁面去,下面是他網頁說明的步驟:
1. 下載並安裝 ftp://files.citrix.com/winfix.exe
2. 接著,下載並安裝最新版的 DNE 更新:
ftp://files.citrix.com/dneupdate.msi for 32-bit
ftp://files.citrix.com/dneupdate64.msi for 64-bit
3. 重新安裝用到 DNE 的程式(例如:VPN Client...)
照著做完之後,果然這次安裝 CISCO-vpnclient-win-msi-5.0.05.0280-k9 後網路就沒問題了~
(詳全文...)
6:59:00 下午
By 洋蔥爸比 Tosian Yang
LAB 的一台 CISCO 3750 居然沒人知道密碼,要用的時候才發現有多困擾;
只好把他給強制洗腦囉....
1. 第一步當然是接上 Console 線啦,COM1 or COM2 看你自己的機器囉...
Terminal 設定如下:
9600 baud rate, No parity, 8 data bits, 1 stop bit, No flow control
2. 拔掉電源線,並長按 "mode" button, 然後開機.
3. Type flash_init
4. Type load_helper
5. Type dir flash:
!--- 要確定 dir flash 後面有加 ":"
接下來應該會看到像下面的咚咚:
Directory of flash:
2 -rwx 843947 Mar 01 1993 00:02:18 C2900XL-h-mz-112.8-SA
4 drwx 3776 Mar 01 1993 01:23:24 html
66 -rwx 130 Jan 01 1970 00:01:19 env_vars
68 -rwx 1296 Mar 01 1993 06:55:51 config.text
1728000 bytes total (456704 bytes free)
6. Type rename flash:config.text flash:config.old 將原來的 configuration file改名,如果接下來要乾淨的重新設定這台 switch 的話,那就直接把檔案殺了就好。
7. Type boot to boot the system.
8. Enter N at the prompt to start the Setup program, Continue with the configuration dialog? [yes/no] : N
9. At the switch prompt type en to turn on enable mode.
10. Type rename flash:config.old flash:config.text 將 configuration file 改回原始檔名. (如果還需要保留舊的設定時才需這個動作)
11. Copy the configuration file into memory:
Switch# copy flash:config.text system:running-config
Source filename [config.text]? (press Return)
Destination filename [running-config]? (press Return)
The configuration file is now reloaded.
12. 接下來就是重頭戲了,改密碼:
switch#configure terminal
switch(config)#enable secret ooxx123 << 其中 ooxx123 就是密碼啦,改成你要的
!-- This step is necessary if the switch had an enable secret password
switch#(config)#^Z
!--Control/Z
13. Write the running configuration to the configuration file:
switch#write memory
好了,搞定收工...
(詳全文...)
10:54:00 下午
By 洋蔥爸比 Tosian Yang
這裡示範的是在 LAB 的一台 CISCO 3650 上做出 DHCP 的功能,假設我們的網段是 192.168.120.0,我希望把 15 個位於
192.168.120.224 ~ 192.168.120.238 之間 IP address 拿來指派用。
接下來是實際的設定了...
LAB3650#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
LAB3650(config)#ip dhcp excluded-address 192.168.120.1 192.168.120.223
LAB3650(config)#ip dhcp excluded-address 192.168.120.239 192.168.120.254
LAB3650(config)#ip dhcp pool v120
LAB3650((dhcp-config)#network 192.168.120.0 255.255.255.0
LAB3650((dhcp-config)#default-router 192.168.120.1
LAB3650((dhcp-config)#dns-server 168.95.1.1 192.72.22.54
LAB3650(config-if)#^Z
LAB3650#wr mem
接下來用 "sh run" 去看,應該會看到如下的部分:
ip dhcp excluded-address 192.168.120.1 192.168.120.223
ip dhcp excluded-address 192.168.120.239 192.168.120.254
!
ip dhcp pool v120
network 192.168.120.0 255.255.255.0
default-router 192.168.120.1
dns-server 168.95.1.1 192.72.22.54
(詳全文...)