鸭子的路标

 
Filed under

dns

 

DevCentral Wiki: DNS_decoding

Loading mentions Retweet
Filed under  //   dns   f5  

Comments [0]

Clamav + Amavisd-new配置笔记 - linux

perl -MCPAN -e shell
install Archive::Tar
install Archive::Zip
install Compress::Zlib
install Convert::TNEF
install Convert::UUlib
install MIME::Base64
install MIME::Parser
install Mail::Internet
install Net::Server
install Net::SMTP
install Digest::MD5
install IO::Stringy
install Time::HiRes
install Unix::Syslog
install BerkeleyDB
install Digest::SHA1
install DBI
install DB_File
install Net::DNS
install IP::Country
exit
#须手动安装Net::DNS
cd /opt/perl
tar -zxvf Net-DNS-0.63.tar.gz
cd cd Net-DNS-0.63
perl Makefile.PL
make;make install
#============ 可选安装项 ======================
perl -MCPAN -e shell
install HTML::Parser
install Mail::SPF
install Mail::SPF::Query
install Mail::SpamAssassin::Plugin::Razor2
install IO::Socket::INET6
install IO::Socket
exit
cd /opt/perl
tar -zxvf Net-Ident-1.20.tar.gz
cd Net-Ident-1.20
perl Makefile.PL
make;make install
cd /opt/perl
tar -zxvf Crypt-OpenSSL-Random-0.04.tar.gz
cd Crypt-OpenSSL-Random-0.04
perl Makefile.PL
make;make install
# 不选择make test
perl -MCPAN -e shell
install Crypt::OpenSSL::RSA
install Mail::DomainKeys
install Mail::DKIM
install LWP::UserAgent
install HTTP::Date
install Encode::Detect
install Mail::SpamAssassin
exit
cd /opt/perl
tar -zxvf Mail-ClamAV-0.22.tar.gz
cd Mail-ClamAV-0.22
perl Makefile.PL
make;make install

Loading mentions Retweet
Filed under  //   dns   linux   perl  

Comments [0]

Shell Script To Create BIND Zone Files

Check out this website I found at bash.cyberciti.biz

First, you need to customize configuration file as follows.
Sample ns.profile.nixcraft.net configuration file

Define your default TTL, EMAIL ID and other stuff. Also, set your mail server and nameserver IPs using bash array. Save file as follows ns.profile.nixcraft.net:

Loading mentions Retweet
Filed under  //   bind   dns   linux  

Comments [0]

centos5.3 bind配置过程

按照这篇文章成功在CentOs5.3上配置了bind-9.6.1
参照了这篇文章
http://www.linuxdiyf.com/viewarticle.php?id=16156

Loading mentions Retweet
Filed under  //   bind   dns   linux  

Comments [1]

DNS服务全攻略

http://blog.51cto.com/viewpic.php?refimg=" + this.src)" viewpic.php?refimg=" + this.src)" border="0" height="293" alt="image" style="border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px;" width="454" />

2.2 DNS所需软件
bind-9.3.3-10.el5.i386.rpm:该包为DNS服务的主程序包。服务器端必须安装该软件包,后面的数字为版本号。
bind-utils-9.3.3-10.el5.i386.rpm:该包为客户端工具,默认安装,用于搜索域名指令。

Loading mentions Retweet
Filed under  //   bind   dns   linux  

Comments [0]

DNS与BIND学习笔记

BIND:全称是Berkeley Internet Name Domain(伯克利因特网名字域系统)。官方网址:http://www.isc.org/。它主要有3个版本:BIND 4,BIND 8,BIND9。非常奇怪,他没有5,6,7这几个版本,一下子就跳到8了,这点和sendmail很像。一种说法是因为BIND8是和4.4BSD一起发布的,因而所有的版本号都升到8。还有一种好玩的说法是因为:BIND8作者认为是一个意义重大的更新版本以至于不用2倍的老号码太对不起它了:)确实在BIND8里融合了许多提高效率,稳定性和安全性的技术。而BIND9则增加了一些超前的理念:IPv6支持,公开密钥加密,多处理器支持,线程安全操作,增量区传送等。BIND9是全部重新设计和实现的(崇拜一下)。不过配置基本相同(伟大)。

Loading mentions Retweet
Filed under  //   bind   dns  

Comments [0]