Mudanças entre as edições de "Projeto Integrador - 2009.2 - Equipe TECHNet"

De MediaWiki do Campus São José
Ir para navegação Ir para pesquisar
Linha 156: Linha 156:
 
*bronze.sj.ifsc.edu.br
 
*bronze.sj.ifsc.edu.br
  
$TTL 86400
+
$TTL 86400
@ IN SOA dns1.technet.sj.ifsc.edu.br. admin.technet.ifsc.edu.br. (
+
@ IN SOA dns1.technet.sj.ifsc.edu.br. admin.technet.ifsc.edu.br. (
2009040100 ; Serial
+
    2009040100 ; Serial
1d ; Refresh
+
1d ; Refresh
4h ; Retry
+
4h ; Retry
1w ; Expire
+
1w ; Expire
1d ) ; Negative Cache TTL
+
1d ) ; Negative Cache TTL
;
+
;
@ IN NS dns1
+
@ IN NS dns1
@ IN MX mail
+
@ IN MX mail
 
+
dns1 IN A 10.3.0.1
+
dns1 IN A 10.3.0.1
mail IN A 10.3.0.1
+
mail IN A 10.3.0.1
www IN A 10.3.0.1
+
www IN A 10.3.0.1
 
+
web IN CNAME www
+
web IN CNAME www
  
 
== Instalação de Equipamentos - IER ==
 
== Instalação de Equipamentos - IER ==
  
 
== Programação - PRC ==
 
== Programação - PRC ==

Edição das 17h30min de 27 de novembro de 2009

Equipe TechNet

Instalação do Sistema Operacional - S.O

  • Configuração da bios
     power -> ac power loss -> enabled
     main -> halt on -> all but keyboard


  • Distribuição e versão do SO: Ubuntu 9.04
  • Particionamento do(s) disco(s):
 Filesystem      Size
 /                    6.8GB
 swap                1GB
/tmp                 3GB
/var                 10GB

Cabeamento Estruturado - CBE

  • Cabos Vermelhos (DC 11)

Gerência de Redes - GAR

  • Configuração do SSH:
 apt-get install ssh
 Editado o arquivo /etc/ssh/sshd.conf
 Port= 5520 ( Configuração de porta do ssh )
  • Configuração de rede
     auto eth0
     iface eth0 inet static
        address 200.135.37.113
        netmask 255.255.255.0
        gateway 200.135.37.1
        dns-nameservers 200.135.37.65
     auto eth1
     iface eth1 inet static
        address 172.113.0.113
        netmask 255.255.255.0
        gateway 172.113.0.1
  • Configuração de DNS
     /etc/resolv.conf
     nameserver 172.18.0.1
     nameserver 200.135.37.65
  • Instalação dos Serviços
     apt-get install dhcp3
     apt-get install bind9 - DNS
     apt-get install cacti - Gerência de redes
     apt-get install apache2
     apt-get install apt-get install mysql-server
     apt-get install php5-mysql



DNS

  • Instalado bind9

Arquivos de configuração:

  • named.conf.local:

zone "technet.sj.ifsc.edu.br" { type master; file "/etc/bind/technet.sj.ifsc.edu.br"; };

zone "wireless.technet.sj.ifsc.edu.br" { type master; file "/etc/bind/wireless.technet.sj.ifsc.edu.br"; };

zone "ouro.technet.sj.ifsc.edu.br" { type master;

       file "/etc/bind/ouro.technet.sj.ifsc.edu.br";

};

zone "prata.technet.sj.ifsc.edu.br" { type master; file "/etc/bind/prata.technet.sj.ifsc.edu.br"; };

zone "bronze.technet.sj.ifsc.edu.br" { type master; file "/etc/bind/bronze.technet.sj.ifsc.edu.br"; };

  • technet.sj.ifsc.edu.br
 $TTL    86400
 @       IN      SOA     dns1.technet.sj.ifsc.edu.br. admin.technet.ifsc.edu.br. (
       2009040100      ; Serial
       1d      ; Refresh
       4h      ; Retry
       1w      ; Expire
       1d )    ; Negative Cache TTL
 ;
 @       IN      NS      dns1
 @       IN      MX      mail
 
 dns1    IN      A       200.135.37.113
 mail    IN      A       200.135.37.113
 www     IN      A       200.135.37.113
 
 web     IN      CNAME   www
  • ouro.sj.ifsc.edu.br
$TTL	86400
@	IN	SOA	dns1.technet.sj.ifsc.edu.br. admin.technet.ifsc.edu.br. (
	2009040100	; Serial
	1d	; Refresh
	4h	; Retry
	1w	; Expire
	1d )	; Negative Cache TTL
;
@	IN	NS	dns1
@	IN	MX	mail

dns1	IN	A	10.1.0.1	
mail 	IN	A	10.1.0.1
www	IN	A	10.1.0.1

web	IN	CNAME	www
  • prata.sj.ifsc.edu.br
TTL	86400
@	IN	SOA	dns1.technet.sj.ifsc.edu.br. admin.technet.ifsc.edu.br. (
    2009040100	; Serial
	1d	; Refresh
	4h	; Retry
	1w	; Expire
	1d )	; Negative Cache TTL
;
@	IN	NS	dns1
@	IN	MX	mail

dns1	IN	A	10.2.0.1	
mail 	IN	A	10.2.0.1
www	IN	A	10.2.0.1

web	IN	CNAME	www


  • bronze.sj.ifsc.edu.br
$TTL	86400
@	IN	SOA	dns1.technet.sj.ifsc.edu.br. admin.technet.ifsc.edu.br. (
    2009040100	; Serial
	1d	; Refresh
	4h	; Retry
	1w	; Expire
	1d )	; Negative Cache TTL
;
@	IN	NS	dns1
@	IN	MX	mail

dns1	IN	A	10.3.0.1	
mail 	IN	A	10.3.0.1
www	IN	A	10.3.0.1

web	IN	CNAME	www

Instalação de Equipamentos - IER

Programação - PRC