WLV/MSN 14.x 之 dbcs 修正補丁

KB961503:Windows XP 更新
安裝此更新可解決使用 Windows Live Messenger 第 14 版時的雙位元組字元字串 (DBCS) 問題。安裝此項目後,您必須重新啟動電腦。

下載:  點我下載

Tomato 1.25 vpn 3.4 更新札記

此版更新後,原 sshd 的部份,會多出 remote port。

如果用 ap 做 gateway 的話,請勾選 remote port 並指定 port number。

如果不是用 ap 做 gateway 的話,請不要勾選 remote port。謝謝。

官網: http://tomatovpn.keithmoyer.com/2009/08/125vpn34-release.html

至於新增什麼功能,請看下面:

  • Upgraded to OpenVPN 2.1rc19
  • AES speed improvements (Thanks fyellin!)
  • More "Accept DNS configuration" options (strict/exclusive)
  • Add (dynamic) HOWTO links to GUI for key generation
  • TLS renegotiation time setting
  • WINS options pushed/accepted along with other DNS options
  • Option to not push server LAN route to clients
  • Option to leave comp-lzo directive out of confi altogether (now "Disable", "None" is equivalent to the old "Disable")
  • Non-VPN changes (also sent to Jon for inclusion in Tomato)
    • Multiple MAC addresses can share an IP for Static DHCP
    • EditDNS added to Dynamic DNS providers
  • Various code cleanups/improvements

As I am building up a total IPv6 network of Linux servers on VMWare, today I will write about how we can configure DHCPv6 server & client. I tested only on RedHat/Fedora/CentOS based platforms. But it should work on other platforms with some minor changes. So lets start…Server Configuration: (dhcp6s)

First we will install DHCPv6 RPM on the server:

# yum -y install dhcpv6

After installing the above mentioned RPM we will turn on global IPv6 initialization and will also enable forwarding of IPv6 packets: 繼續閱讀 »

#wget http://www.zdziarski.com/projects/mod_evasive/mod_evasive_1.10.1.tar.gz
#tar zxvf mod_evasive_1.10.1.tar.gz
#cd mod_evasive
#yum install httpd-devel.x86_64
#apxs -cia mod_evasive20.c
#vi /etc/httpd/conf/httpd.conf
加入下列代碼:
<IfModule mod_evasive20.c>
DOSHashTableSize    3097
DOSPageCount        2
DOSSiteCount        50
DOSPageInterval     1
DOSSiteInterval     1
DOSBlockingPeriod   10
DOSEmailNotify      y...@email.com
DOSLogDir           "/var/lock/mod_evasive"
DOSWhitelist     127.0.0.1
</IfModule>
ok後,寫入存檔離開。
#vi test.pl
========= test.pl 的 內容 – 開始 ===========
#!/usr/bin/perl
# test.pl: small script to test mod_dosevasive’s effectiveness
use IO::Socket;
use strict;
for(0..100) {
my($response);
my($SOCKET) = new IO::Socket::INET( Proto   => "tcp",
PeerAddr=> "127.0.0.1:80″);
if (! defined $SOCKET) { die $!; }
print $SOCKET "GET /?$_ HTTP/1.0\n\n";
$response = <$SOCKET>;
print $response;
close($SOCKET);
}
========= test.pl 的 內容 – 結束===========
把 127.0.0.1 改成你 server 的 ip,存檔離開。
#chmod +x test.pl
#./test.pl

#wget http://www.zdziarski.com/projects/mod_evasive/mod_evasive_1.10.1.tar.gz

#tar zxvf mod_evasive_1.10.1.tar.gz

#cd mod_evasive

#yum install httpd-devel.x86_64

#apxs -cia mod_evasive20.c

#vi /etc/httpd/conf/httpd.conf

繼續閱讀 »

訂閱網站

Page optimized by WP Minify WordPress Plugin