REPLICACION DE MySQL.-
IN ANOTHER LIFEEEEEE !
CONFIGURACIONES DEL DNS.-
Editar el archivo /etc/bind/named.conf.local para que quede así:
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
// Aqui van mis zonas tanto directa como inversa
zone "tacruel.net" {
type master;
file "/etc/bind/zones/db.tacruel.net";
};
// zona gay
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/db.192.168.1";
};
Ingresamos nuestro forwarding /etc/bind/named.conf.options y nos queda asi:
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
// Aqui van mis zonas tanto directa como inversa
zone "tacruel.net" {
type master;
file "/etc/bind/zones/db.tacruel.net";
};
// zona gay
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/db.192.168.1";
};
Editamos el archivo de las interfaces /etc/network/interfaces:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
#allow-hotplug eth0
#iface eth0 inet static
auto eth0
iface eth0 inet static
address 192.168.1.101
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
Al archivo /etc/resolv.conf se le agrega la siguiente información:
domain tacruel.net
search tacruel.net
nameserver 192.168.1.101
Después se crea las zonas e inicio con la resolucion directa que es nuestro archivo /etc/bind/zones/db.tacruel.net y su contenido es:
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA tacruel.net. root.tacruel.net. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS tacruel.net.
@ IN A 192.168.1.101
www IN CNAME tacruel.net.
host1 IN CNAME www
host2 IN CNAME www
@ IN AAAA ::1
Ahora nuestra zona gay en el archivo /etc/bind/zones/db.192.168.1 y su contenido es:
;
; BIND reverse data file for local loopback interface
;
$TTL 604800
@ IN SOA tacruel.net. root.tacruel.net. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS tacruel.net.
101 IN PTR tacruel.net.
11 IN PTR host1.tacruel.net.
8 IN PTR host2.tacruel.net.
El archivo /etc/hosts debe tener la siguiente configuración:
#127.0.0.1 localhost
#127.0.1.1 nodo2.home nodo2
#Aquí nuestro cluster
127.0.0.1 localhost.localdomain localhost
192.168.1.101 ns.tacruel.net ns
192.168.1.11 host1.tacruel.net host1
192.168.1.8 host2.tacruel.net host2
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
// Aqui van mis zonas tanto directa como inversa
zone "tacruel.net" {
type master;
file "/etc/bind/zones/db.tacruel.net";
};
// zona gay
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/db.192.168.1";
};
Ingresamos nuestro forwarding /etc/bind/named.conf.options y nos queda asi:
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
// Aqui van mis zonas tanto directa como inversa
zone "tacruel.net" {
type master;
file "/etc/bind/zones/db.tacruel.net";
};
// zona gay
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/zones/db.192.168.1";
};
Editamos el archivo de las interfaces /etc/network/interfaces:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
#allow-hotplug eth0
#iface eth0 inet static
auto eth0
iface eth0 inet static
address 192.168.1.101
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
Al archivo /etc/resolv.conf se le agrega la siguiente información:
domain tacruel.net
search tacruel.net
nameserver 192.168.1.101
Después se crea las zonas e inicio con la resolucion directa que es nuestro archivo /etc/bind/zones/db.tacruel.net y su contenido es:
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA tacruel.net. root.tacruel.net. (
2 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS tacruel.net.
@ IN A 192.168.1.101
www IN CNAME tacruel.net.
host1 IN CNAME www
host2 IN CNAME www
@ IN AAAA ::1
Ahora nuestra zona gay en el archivo /etc/bind/zones/db.192.168.1 y su contenido es:
;
; BIND reverse data file for local loopback interface
;
$TTL 604800
@ IN SOA tacruel.net. root.tacruel.net. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS tacruel.net.
101 IN PTR tacruel.net.
11 IN PTR host1.tacruel.net.
8 IN PTR host2.tacruel.net.
El archivo /etc/hosts debe tener la siguiente configuración:
#127.0.0.1 localhost
#127.0.1.1 nodo2.home nodo2
#Aquí nuestro cluster
127.0.0.1 localhost.localdomain localhost
192.168.1.101 ns.tacruel.net ns
192.168.1.11 host1.tacruel.net host1
192.168.1.8 host2.tacruel.net host2
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
SCRIPT PARA EL ARRANQUE DE PROCESOS AL INICIO DE SESION:
#! /bin/sh
# /etc/init.d/lanzapen
#
# Inicio Script del Cluster hecho por PEN y la mara.-
case "$1" in
start)
ifconfig eth1 172.16.1.1 up
pen 443 -l /var/log/pen.log -p /var/log/pen.pid -w /var/www/html/pen.html -h -f -d -e 192.168.1.8:443 192.168.1.11:443
;;
esac
exit 0
Por cierto:
#! /bin/sh
# /etc/init.d/lanzapen
#
# Inicio Script del Cluster hecho por PEN y la mara.-
case "$1" in
start)
ifconfig eth1 172.16.1.1 up
pen 443 -l /var/log/pen.log -p /var/log/pen.pid -w /var/www/html/pen.html -h -f -d -e 192.168.1.8:443 192.168.1.11:443
;;
esac
exit 0
Por cierto:
- Solo utilizamos la inicialización del PEN ya que no necesitaremos detener, reiniciar ni recargar el servicio debido a que PEN tomo el control de la terminal y utilizado de la forma en que lo hemos puesto no termina de arrancar el sistema.-
- Si quieres saber más de como crear scripts sh, bueno googlea.-
UN PAR DE TONTERAS:
Marely chateando con Sofie, Toño viendo .... documentales ?
Qué que queeee!
Uno de los pocos momentos que si estabamos disque trabajando
Digan no al tequila, al menos los lunes
Para la primera defensa, creo que he visto demasiado Anime & KDoramas
Trabajando o descargando películas ?
3 noches sin dormir
Subida clandestinamente, no le digan a Marely
Bueno, hasta aquí.-
1 comentarios:
Sigue estando llamativa Marely :D
Publicar un comentario