2010年2月19日 星期五
windows iis server 更改上傳檔案大小限制(預設200k)
因為安全的考量,windows server上,IIS預設不能上傳大於200kb的檔案。
1.開始->執行->輸入->services.msc
2.停止以下兩個服務 (一定要停止)IIS Admin Service、World Wide Web Publishing Service
3.用記事本開啟路徑為 C:\Windows\system32\inetsrv\metabase.xml 這個檔案
4.尋找 AspMaxRequestEntityAllowed 這個字串,預設值為 204800 (代表200 KB)
5.若將預設值改為 10240000 ,即代表可上傳 10MB 的檔案,餘類推
6.存檔後重新啟動IIS Admin Service、World Wide Web Publishing Service即可
2010年2月11日 星期四
網管筆記 - Cisco指令 - Port相關
設定Port IP
(config)#interface Fastethernet 0/1
(config-if)#ip address 192.168.0.1 255.255.255.0
鏡射埠
(config)#monitor session [monitor id] source inteface [port id] <-來源埠
(config)#monitor session [monitor id] destination inteface [port id] <-目的埠
(config)#end
#sh monitor
例:
(config)#monitor session 1 source inteface gi0/21
(config)#monitor session 1 destination inteface gi0/22
2010年2月9日 星期二
網管筆記 - Cisco指令 - Vlan相關
網管筆記 - Cisco指令 - Vlan相關
設定Vlan IP
(config)#interface Vlan 1
(config-if)#ip address 192.168.0.1 255.255.255.0
設定Vlan
1)Vlan ID Default 1~4094
2)Vlan ID 1 原廠預設(不變更)
3)Vlan 1002-1005 特殊用途(不能用)
4)Vlan 1005-4096 Extended-range 需透過VTP使用
(1)設定Vlan資料庫
#Vlan database
(Vlan)#Vlan [ID] name [name] <-設定Vlan ID編號及名稱,編號1為系統預設不能使用
(2)設定Vlan ID Port(單一埠)
(config)#int f0/1(config-if)#switchport mode access <-設定模式為L2 access port
(config-if)#switchport access vlan [Vlan ID]
設定Vlan ID Port(多埠)
(config)#int r f0/1-5
(config-if-range)#switchport mode access <-設定模式為L2 access port
(config-if-range)#switchport access vlan [Vlan ID]
網管筆記 - Cisco指令 - 一般用
進入特權模式
>enable 縮:en
退出特權模式
#disable
進入設定模式
#configure terminal 縮:conf t
(config)#
返回上一層
(config)#exit
返回特權模式第一層
(config)#end
儲存設定
1)NVRAM <-保存的設定,供冷起動使用 2)RAM <-目前執行中的設定
#copy running-config startup-config
設定特權密碼
#enable secret [password]
重新啟動軟體(暖啟動)
#reload
清除並重新載入
(1)刪除Vlan資料庫
#delete flash:Vlan.dat
Delete filename [Vlan.dat]? (Enter)
Delete flash:vlan.dat?[confirm]? (Enter)
(2)刪除NVRAM啟動設定檔
#erase startup-config
Eraseing the nvram filesystem will remove all files! continue [confim]? (Enter)
(3)重新通電(冷啟動)
網管筆記-安裝 NTOP 流量監控(Fedora 11)
安裝 NTOP 網管工具(Fedora 11)
利用yum 安裝 ntop 套件
-> yum install ntop
啟動NTOP
->service ntop start
設定NTOP使用者
->ntop -A (預設為Admin)
設定每次開機啟動(多網卡)
-> vi /etc/rc.local
ntop -d -L -i eth0,eth1,eth2,eth3
相關網址
http://tony.strongniche.com.tw/linux/contents.php?sn=179
網管筆記-安裝 cacti 流量計測 (Fedora 11)
利用yum安裝所需套件
RRDTool
Apache (or IIS)
PHP
MySQL
開始設定
- Mysql 部分:
啟動mysql
-> service mysqld start
設定 mysql root密碼
-> mysqladmin -u root password 'mysql'
建立mysql cacti user
-> mysqladmin -u root -p create cacti (需mysql root 密碼)
匯入cacti資料庫
-> mysql -u root -p -A cacti < /usr/share/doc/cacti-0.8.7e/cacti.sql 進入mysql 命令列 -> mysql -u root -p -A mysql (需mysql root 密碼)
進入mysql後執行下面動作即可
mysql> grant all privileges on cacti.* to cactiuser@localhost identified by 'cactiuser';
mysql> flush privileges;
mysql> exit
設定 開機自動啟動
-> 指令 chkconfig mysqld on
- Apache 部分
啟動 Apache -> service httpd start
修改設定檔 : (將下面幾行註解掉,這樣只要帳號密碼即可以登入)
vi /etc/httpd/conf.d/cacti.conf
#Order allow,deny
#deny from all
#Allow from 127.0.0.1
重新載入設定值 -> service httpd reload
設定 開機自動啟動 -> chkconfig httpd on - 修改 /etc/cron.d/cacti 將前面的 " # " 拿掉這樣系統才會自動作polling
- 首次登入 帳號密碼都是admin
- 登入網址 http://your.host.ip/cacti
相關網址:Cacti 中文研究站