Mudanças entre as edições de "Projeto Integrador - 2009.1 - Equipe True"

De MediaWiki do Campus São José
Ir para navegação Ir para pesquisar
Linha 20: Linha 20:
 
         #Broadcast
 
         #Broadcast
 
         option broadcast-address 10.4.1.255;
 
         option broadcast-address 10.4.1.255;
        #Rota-padrão
+
        #Rota-padrão
 
         option routers 10.4.1.1;
 
         option routers 10.4.1.1;
 
         #DNS
 
         #DNS
Linha 69: Linha 69:
 
  };
 
  };
  
 
+
* DNS Direto
 
  $TTL    86400
 
  $TTL    86400
 
  @      IN      SOA    dns.true.sj.ifsc.edu.br. true.true.sj.ifsc.edu.br. (
 
  @      IN      SOA    dns.true.sj.ifsc.edu.br. true.true.sj.ifsc.edu.br. (
Linha 91: Linha 91:
  
  
  include "/etc/bind/named.conf.options";
+
  * DNS Reverso
   
+
  $TTL    86400
  // prime the server with knowledge of the root servers
+
  @  IN SOA      dns.true.sj.ifsc.edu.br. true.true.sj.ifsc.edu.br. ( ; Start of Authority
zone "." {
+
        2009062200 ;Thiego Vierira    ; Serial
         type hint;
+
                            1d         ; Refresh
         file "/etc/bind/db.root";
+
                            4h         ; Retry
};
+
                            4w        ; Expire
+
                            1d )      ; Negative Cache TTL
// be authoritative for the localhost forward and reverse zones, and for
+
 
// broadcast zones as per RFC 1912
+
 
   
+
  ;Servidores DNS
zone "localhost" {
+
  @ IN NS dns.true.sj.ifsc.edu.br.
        type master;
+
 
        file "/etc/bind/db.local";
+
;Servidor de email; Mail eXchanger
  };
+
 
   
+
  @ IN MX 0 mail.true.sj.ifsc.edu.br.
  zone "127.in-addr.arpa" {
+
 
        type master;
+
;Address ; endereco
        file "/etc/bind/db.127";
+
  114 IN PTR dns.true.sj.ifsc.edu.br.
};
+
  114  IN PTR mail.true.sj.ifsc.edu.br.
 
+
  114 IN PTR www.true.sj.ifsc.edu.br.
  zone "0.in-addr.arpa" {
 
        type master;
 
        file "/etc/bind/db.0";
 
};
 
   
 
  zone "255.in-addr.arpa" {
 
        type master;
 
        file "/etc/bind/db.255";
 
  };
 
   
 
  include "/etc/bind/named.conf.local";
 
  
 
= Instalação de Equipamentos de Redes =
 
= Instalação de Equipamentos de Redes =

Edição das 20h34min de 23 de junho de 2009

Cabeamento Estruturado

  • Passado cabo UTP cat 5e, laboratório de meios de transmissão para redes II.
  • Montagem do rack.
  • Passagem de 2 cabos cabeamento horizontal


Gerência de Redes

Configuraçao de arquivos

  • DHCP
#/etc/dhcp3/dhcpd.conf

subnet 10.4.1.0 netmask 255.255.255.0 {
       #IP
       range 10.4.1.128 10.4.1.138;
       #Máscara
       option subnet-mask 255.255.255.0;
       #Broadcast
       option broadcast-address 10.4.1.255;
        #Rota-padrão
       option routers 10.4.1.1;
       #DNS
       option domain-name-servers 200.135.37.114;
}

subnet 10.4.2.0 netmask 255.255.255.0 {
       #IP
       range 10.4.2.128 10.4.2.138;
       #Máscara
       option subnet-mask 255.255.255.0;
       #Broadcast
       option broadcast-address 10.4.2.255;
       #Rota-padrão
       option routers 10.4.2.1;
       #DNS
       option domain-name-servers 200.135.37.114;
}
subnet 10.4.10.0 netmask 255.255.255.0 {
       #IP
       range 10.4.10.128 10.4.10.138;
       #Máscara
       option subnet-mask 255.255.255.0;
       #Broadcast
       option broadcast-address 10.4.10.255;
       #Rota-padrão
       option routers 10.4.10.1;
       #DNS
       option domain-name-servers 200.135.37.114;
  • DNS
// Do any local configuration here
//

// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";

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

zone "37.135.200.in-addr.arpa" {
  type master;
  file "/etc/bind/37.135.200.in-addr.arpa"; 
};
  • DNS Direto
$TTL    86400
@       IN      SOA     dns.true.sj.ifsc.edu.br. true.true.sj.ifsc.edu.br. (

                       2009062200      ; Serial
                               1d      ; Refresh
                               4h      ; Retry
                               1w      ; Expire
                               1d )    ; Negative Cache TTL
; nome dos dns
@ IN NS dns
  
; Servidor de email ; Mail eXchanger
 
@ IN MX 0 mail
mail IN A 200.135.37.114
 
; adress: endereço
dns IN A 200.135.37.114
www IN A 200.135.37.114 


* DNS Reverso 
$TTL    86400
@  IN SOA       dns.true.sj.ifsc.edu.br. true.true.sj.ifsc.edu.br. ( ; Start of Authority
        2009062200 ;Thiego Vierira     ; Serial
                            1d         ; Refresh
                            4h         ; Retry
                            4w         ; Expire
                            1d )       ; Negative Cache TTL


;Servidores DNS
@  IN NS  dns.true.sj.ifsc.edu.br.
;Servidor de email; Mail eXchanger
@ IN MX 0 mail.true.sj.ifsc.edu.br.
;Address ; endereco
114  IN PTR dns.true.sj.ifsc.edu.br.
114  IN PTR mail.true.sj.ifsc.edu.br.
114  IN PTR www.true.sj.ifsc.edu.br.

Instalação de Equipamentos de Redes

Programação para redes de Computadores

Serviços Instalados

  • S.O
  • Vim
  • Postifix
  • Bind9
  • Windows System
  • Firefox
  • DHCP3-server
  • HTTP
  • SSH
  • Black Box