<![CDATA[Messages posted by "dragonbk88"]]> /hvaonline/posts/listByUser/184992.html JForum - http://www.jforum.net Slave DNS không lấy được thông tin từ master DNS /hvaonline/posts/preList/45063/278166.html#278166 /hvaonline/posts/preList/45063/278166.html#278166 GMT Slave DNS không lấy được thông tin từ master DNS /hvaonline/posts/preList/45063/278111.html#278111 /hvaonline/posts/preList/45063/278111.html#278111 GMT Slave DNS không lấy được thông tin từ master DNS Cấu hình cho cả 2 máy: - Cả 2 máy mình đều đã cài các gói bind cần thiết (không cài bind-chroot để test thử trước đã) - Cả 2 máy đều cấu hình iptables như sau: Code:
# Generated by iptables-save v1.4.7 on Wed Aug  7 00:19:08 2013
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -p udp -m multiport --dports 111,662,875,892,2049,32769 -j ACCEPT 
-A INPUT -p tcp -m multiport --dports 111,662,875,892,2049,32803 -j ACCEPT 
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT 
-A INPUT -p icmp -j ACCEPT 
-A INPUT -i lo -j ACCEPT 
-A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT 
-A INPUT -j REJECT --reject-with icmp-host-prohibited 
-A FORWARD -j REJECT --reject-with icmp-host-prohibited 

-A INPUT -p udp -m state --state NEW --dport 53 -j ACCEPT
-A INPUT -p tcp -m state --state NEW --dport 53 -j ACCEPT
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

COMMIT
# Completed on Wed Aug  7 00:19:08 2013
- File /etc/resolv.conf Code:
search server.com
name server 192.168.104
name server 192.168.105
- Ping cả 2 máy cho nhau đều được. Thông tin mình setup DNS cho server: File /etc/named.conf Code:
options {
	listen-on port 53 { 127.0.0.1; 192.168.1.104;};		// Master DNS
	listen-on-v6 port 53 { ::1; };
	directory 	"/var/named";
	dump-file 	"/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
	allow-query     { localhost; 192.168.1.0/24;};		// IP Range 
	allow-transfer	{ localhost; 192.168.1.105;};		// Slave DNS
	recursion yes;

	dnssec-enable yes;
	dnssec-validation yes;
	dnssec-lookaside auto;

	/* Path to ISC DLV key */
	bindkeys-file "/etc/named.iscdlv.key";

	managed-keys-directory "/var/named/dynamic";
};

logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};

zone "." IN {
	type hint;
	file "named.ca";
};

zone "server.com" IN {
	type master;
	file "fwd.server.com";
	allow-update { 192.168.1.105; };
	allow-transfer { 192.168.1.105; };
};

zone "1.168.192.in-addr.arpa" IN {
	type master;
	file "rev.server.com";
	allow-update { 192.168.1.105; };
	allow-transfer { 192.168.1.105; };
};


include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
File /var/named/fwd.server.com Code:
$TTL 1D
@		IN SOA	 	masterdns.server.com. root.server.com. (
					2013090802	; serial
					3600		; refresh
					1800		; retry
					604800		; expire
					86400 		; minimum
)
@		IN NS		masterdns.server.com.
@		IN NS		slavedns.server.com.
masterdns	IN A		192.168.1.104
		IN MX 1		mail.server.com.
slavedns	IN A		192.168.1.105
www		IN CNAME	masterdns.server.com.
mail		IN CNAME	masterdns.server.com.
ftp		IN CNAME	masterdns.server.com.
proxy		IN CNAME	masterdns.server.com.
itdep		IN NS		itdns.server.com.
itdns		IN A		192.168.1.106
File /var/named/rev.server.com Code:
$TTL 1D
@		IN SOA	 	masterdns.server.com. root.server.com. (
					2013090802	; serial
					3600		; refresh
					1800		; retry
					604800		; expire
					86400 		; minimum
)
@		IN NS		masterdns.server.com.
@		IN NS		slavedns.server.com.
104		IN PTR		masterdns.server.com.
105		IN PTR		slavedns.server.com.
106		IN PTR		itdep.server.com.
		IN PTR		mail.itdep.server.com.
Cấu hình cho slave DNS: File /etc/named.conf Code:
options {
	listen-on port 53 { 127.0.0.1; 192.168.1.105;};
	listen-on-v6 port 53 { ::1; };
	directory 	"/var/named";
	dump-file 	"/var/named/data/cache_dump.db";
        statistics-file "/var/named/data/named_stats.txt";
        memstatistics-file "/var/named/data/named_mem_stats.txt";
	allow-query     { localhost; };
	recursion yes;

	dnssec-enable yes;
	dnssec-validation yes;
	dnssec-lookaside auto;

	/* Path to ISC DLV key */
	bindkeys-file "/etc/named.iscdlv.key";

	managed-keys-directory "/var/named/dynamic";
};

logging {
        channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};

zone "." IN {
	type hint;
	file "named.ca";
};

zone "server.com" IN {
	type slave;
	file "fwd_slave.server.com";
	masters {192.168.1.104;};
};

zone "1.168.192.in-addr.arpa" IN {
	type slave;
	file "rev_slave.server.com";
	masters {192.168.1.104;};
};

include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
Thế nhưng mình vẫn không nhận được file từ serve truyền qua cho slave Đây là file /var/log/messages của slavedns Code:
Aug 11 09:50:26 slavedns named[3466]: zone 1.168.192.in-addr.arpa/IN: refresh: retry limit for master 192.168.1.104#53 exceeded (source 0.0.0.0#0)
Aug 11 09:50:26 slavedns named[3466]: zone 1.168.192.in-addr.arpa/IN: Transfer started.
Aug 11 09:50:26 slavedns named[3466]: transfer of '1.168.192.in-addr.arpa/IN' from 192.168.1.104#53: failed to connect: host unreachable
Aug 11 09:50:26 slavedns named[3466]: transfer of '1.168.192.in-addr.arpa/IN' from 192.168.1.104#53: Transfer completed: 0 messages, 0 records, 0 bytes, 0.001 secs (0 bytes/sec)
Aug 11 09:50:27 slavedns named[3466]: zone server.com/IN: refresh: retry limit for master 192.168.1.104#53 exceeded (source 0.0.0.0#0)
]]>
/hvaonline/posts/preList/45063/278066.html#278066 /hvaonline/posts/preList/45063/278066.html#278066 GMT
Xin cuốn sách "KVM Best Practices" /hvaonline/posts/preList/44880/277080.html#277080 /hvaonline/posts/preList/44880/277080.html#277080 GMT Yêu cầu sách, reupload sách vui lòng đặt câu hỏi ở đây /hvaonline/posts/preList/19573/276811.html#276811 /hvaonline/posts/preList/19573/276811.html#276811 GMT Xin cuốn sách "KVM Best Practices" /hvaonline/posts/preList/44880/276807.html#276807 /hvaonline/posts/preList/44880/276807.html#276807 GMT Xin tài liệu ảo hoá trong linux, windows /hvaonline/posts/preList/44848/276658.html#276658 /hvaonline/posts/preList/44848/276658.html#276658 GMT Xin tài liệu ảo hoá trong linux, windows /hvaonline/posts/preList/44848/276636.html#276636 /hvaonline/posts/preList/44848/276636.html#276636 GMT Xin giải thích về cách hoạt động của MAC in MAC /hvaonline/posts/preList/42400/263908.html#263908 /hvaonline/posts/preList/42400/263908.html#263908 GMT Xin giải thích về cách hoạt động của MAC in MAC http://en.wikipedia.org/wiki/HVLAN. Theo mình biết thì nếu dùng VLAN thì chỉ được tối đa 4094 VLAN thôi. Bây giờ người ta muốn mở rộng ra số VLAN nên dùng Q in Q, MAC in MAC hoặc HVLAN. Nhưng mình không biết cơ chế hoạt động của từng thằng ra sao đặc biệt là MAC in MAC? Mong mọi người chỉ giáo.]]> /hvaonline/posts/preList/42400/263791.html#263791 /hvaonline/posts/preList/42400/263791.html#263791 GMT SysAdmin có cần biết lập trình (ngoài shell script) /hvaonline/posts/preList/41756/263143.html#263143 /hvaonline/posts/preList/41756/263143.html#263143 GMT Sách Linux RH442 Red Hat Enterprise System Monitoring and Performance /hvaonline/posts/preList/39115/240250.html#240250 /hvaonline/posts/preList/39115/240250.html#240250 GMT Cần tìm file ldapfilt.jar của LDAP /hvaonline/posts/preList/38710/238005.html#238005 /hvaonline/posts/preList/38710/238005.html#238005 GMT Cần tìm file ldapfilt.jar của LDAP /hvaonline/posts/preList/38710/237303.html#237303 /hvaonline/posts/preList/38710/237303.html#237303 GMT Cần tìm file ldapfilt.jar của LDAP Code:
LDAPFilterDescriptor filterDes = null;
LDAPFilterList filterList = null;
Thanks]]>
/hvaonline/posts/preList/38710/237161.html#237161 /hvaonline/posts/preList/38710/237161.html#237161 GMT
Dùng LDAP cho 1 trường Đại học /hvaonline/posts/preList/38572/236619.html#236619 /hvaonline/posts/preList/38572/236619.html#236619 GMT Giúp đỡ về cài đặt & cấu hình ldap /hvaonline/posts/preList/38435/236011.html#236011 /hvaonline/posts/preList/38435/236011.html#236011 GMT Giúp đỡ về cài đặt & cấu hình ldap Waiting 5 seconds for slapd to start... Waiting 5 seconds for slapd to start... Waiting 5 seconds for slapd to start... Waiting 5 seconds for slapd to start... Waiting 5 seconds for slapd to start... ./scripts/test000-rootdse: kill: (10607) - No such pid ldap_sasl_bind_s: Can't contact LDAP server (-1) >>>>> Test failed >>>>> ./scripts/test000-rootdse failed (exit 1) make[2]: *** [bdb-yes] Error 1 make[2]: Leaving directory `/ldap_files/openldap-2.4.6/tests' make[1]: *** [test] Error 2 make[1]: Leaving directory `/ldap_files/openldap-2.4.6/tests' make: *** [test] Error 2   Sau đó em cài gói slapd vào thì ko bị lỗi này nữa mà bị lỗi ở trên mà em đưa ra. Nên lần sau em cài gói slapd vào trước. Em dùng ubuntu quen rồi nên mới cài ldap trên nó. Với lại thấy sách viết cài đặt & cấu hình trên ubuntu cũng nhiều Em mới tìm hiểu centos.Anh quanta đã từng cài openldap trên OS nào vậy? Cho em link tham khảo được không?]]> /hvaonline/posts/preList/38435/235953.html#235953 /hvaonline/posts/preList/38435/235953.html#235953 GMT Giúp đỡ về cài đặt & cấu hình ldap Code:
$ sudo apt-get install libldap-2.4-2 slapd ldap-utils
2/ cài đặt berkeleyDB Code:
$ gzip -d db-4.8.30.tar.gz
$ tar xfv db-4.8.30.tar
$ cd db-4.8.30/build_unix
$ ../dist/configure --prefix=/usr/local/
$ make
$ sudo make install
3/ Cài TLS Code:
$ gzip -d openssl-0.9.8.tar.gz
$ tar xfv openssl-0.9.8.tar
$ cd openssl-0.9.8
$ ./config shared --openssldir=/usr/local
$ make
$ sudo make install
4/ Cài đặt openldap Code:
$ gzip -d openldap-2.4.23.tgz
$ tar xfv openldap-2.4.23.tar
$ cd openldap-2.2.26
$ ./configure
$ make depend
$ make
$ make test
$ sudo make install
(khi chạy make test thì xuất hiện 3 lỗi nhưng em vẫn chạy make install được) 5/ Cấu hình file slapd.conf trong /usr/local/etc/openldap/
include /usr/local/etc/openldap/schema/core.schema pidfile /usr/local/var/run/slapd.pid argsfile /usr/local/var/run/slapd.args modulepath /usr/local/libexec/openldap moduleload back_bdb.la moduleload back_hdb.la moduleload back_ldap.la database bdb suffix "dc=example,dc=com" rootdn "cn=Manager,dc=example,dc=com" rootpw secret directory /usr/local/var/openldap-data index objectClass eq access to attrs=userPassword by anonymous auth by self write by * none access to * by self write by users read by anonymous auth  
6/ Tạo file DB_CONFIG trong /usr/local/var/openldap-data $ cp /usr/local/etc/openldap/DB_CONFIG.example /usr/local/var/openldap-data 7/ Test file slapd.conf $slaptest -v -f /usr/local/etc/openldap/slapd.conf Nó xuất hiện các lỗi sau:
slaptest: /usr/local/lib/libdb-4.8.so: no version information available (required by slaptest) bdb_db_open: DB_CONFIG for suffix "dc=example,dc=com" has changed. Performing database recovery to activate new settings. bdb_db_open: database "dc=example,dc=com": recovery skipped in read-only mode. Run manual recovery if errors are encountered. bdb(dc=example,dc=com): Build signature doesn't match environment bdb_db_open: database "dc=example,dc=com" cannot be opened, err -30971. Restore from backup! backend_startup_one (type=bdb, suffix="dc=example,dc=com"): bi_db_open failed! (-30971) slap_startup failed (test would succeed using the -u switch)  
Mong các anh giúp giùm Thanks!]]>
/hvaonline/posts/preList/38435/235926.html#235926 /hvaonline/posts/preList/38435/235926.html#235926 GMT
Re: Yêu cầu sách, reupload sách vui lòng đặt câu hỏi ở đây /hvaonline/posts/preList/19573/164684.html#164684 /hvaonline/posts/preList/19573/164684.html#164684 GMT