root@rufaidah:~# vi /etc/bind/named.conf.options
options {
directory "/etc/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See http://www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
// forwarders {
// 0.0.0.0;
// };
# add a range you allow to transfer zones
allow-transfer { localhost; 10.20.0.0/24; 172.16.0.80/29; };
auth-nxdomain no; # conform to RFC1035
# listen-on-v6 { any; };
};
root@rufaidah:~# rndc reload
server reload successful
root@slave:~# vi /etc/bind/named.conf.external-zones
# add settings like follows
zone "server.world" {
type slave;
masters { 172.16.0.82; };
file "/etc/bind/slaves/server.world.wan";
};
root@slave:~# mkdir /etc/bind/slaves
root@slave:~# chown bind. /etc/bind/slaves
root@slave:~# rndc reload
server reload successful
root@slave:~# ls /etc/bind/slaves
server.world.wan
Saturday, 11 April 2015
Install DNS DI Debian Bagian 3
Posted By: Rufaidah-network - 15:13
root@rufaidah:~# vi /etc/resolv.conf
# add own IP address
nameserver 10.20.0.30
root@rufaidah:~# /etc/init.d/bind9
restart
[....] Stopping domain name service...:
bind9waiting for pid 4633 to die
. ok
[ ok ] Starting domain name service...:
bind9.
root@rufaidah:~# dig
rufaidah.server.world.
; <<>> DiG
9.8.4-rpz2+rl005.12-P1 <<>> rufaidah.server.world.
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode:
QUERY, status: NOERROR, id: 19721
;; flags: qr aa rd ra; QUERY: 1,
ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;rufaidah.server.world. IN
A
;; ANSWER SECTION:
rufaidah.server.world. 86400 IN
A 10.20.0.30
;; AUTHORITY SECTION:
server.world. 86400 IN
NS rufaidah.server.world.
;; Query time: 0 msec
;; SERVER: 10.20.0.30#53(10.20.0.30)
;; WHEN: Mon May 6 18:59:06 2013
;; MSG SIZE rcvd: 64
root@rufaidah:~# dig -x 10.20.0.30
; <<>> DiG
9.8.4-rpz2+rl005.12-P1 <<>> -x 10.20.0.30
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode:
QUERY, status: NOERROR, id: 42835
;; flags: qr aa rd ra; QUERY: 1,
ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1
;; QUESTION SECTION:
;30.0.0.10.in-addr.arpa.
IN PTR
;; ANSWER SECTION:
30.0.0.10.in-addr.arpa. 86400 IN
PTR rufaidah.server.world.
;; AUTHORITY SECTION:
0.0.10.in-addr.arpa. 86400 IN
NS rufaidah.server.world.
;; ADDITIONAL SECTION:
rufaidah.server.world. 86400 IN
A 10.20.0.30
;; Query time: 0 msec
;; SERVER: 10.20.0.30#53(10.20.0.30)
;; MSG SIZE rcvd: 100
Tuesday, 7 April 2015
Install DHCP SErver di Debian
Posted By: Rufaidah-network - 02:30
root@rufaidah:~# aptitude -y install dhcp3-server
root@rufaidah:~# vi /etc/dhcp/dhcpd.conf
# line 13: specify domain name
option domain-name "server.world";
# line 14: specify nameserver's hostname or IP address
option domain-name-servers rufaidah.server.world;
# line 21: uncomment
authoritative;
# add at the last
# specify network address and subnet-mask
subnet 10.20.1.0.0 netmask 255.255.255.0 {
# specify default gateway
option routers 10.20.1.0.1;
# specify subnet-mask
option subnet-mask 255.255.255.0;
# specify the range of leased IP address
range dynamic-bootp 10.20.1.0.200 10.20.1.254;
}
root@rufaidah:~# /etc/init.d/isc-dhcp-server restart
[ ok ] Stopping ISC DHCP server: dhcpd.
[ ok ] Starting ISC DHCP server: dhcpd.
root@rufaidah:~# vi /etc/dhcp/dhcpd.conf
# line 13: specify domain name
option domain-name "server.world";
# line 14: specify nameserver's hostname or IP address
option domain-name-servers rufaidah.server.world;
# line 21: uncomment
authoritative;
# add at the last
# specify network address and subnet-mask
subnet 10.20.1.0.0 netmask 255.255.255.0 {
# specify default gateway
option routers 10.20.1.0.1;
# specify subnet-mask
option subnet-mask 255.255.255.0;
# specify the range of leased IP address
range dynamic-bootp 10.20.1.0.200 10.20.1.254;
}
root@rufaidah:~# /etc/init.d/isc-dhcp-server restart
[ ok ] Stopping ISC DHCP server: dhcpd.
[ ok ] Starting ISC DHCP server: dhcpd.
Subscribe to:
Comments (Atom)
Popular
Tags
Videos