Equipe 1: mudanças entre as edições

De MediaWiki do Campus São José
Ir para navegação Ir para pesquisar
Sem resumo de edição
 
Linha 24: Linha 24:
Acesso remoto funcionando!
Acesso remoto funcionando!


'''Configurar Ip fixo do servidor:'''
== 09/02/2014 ==


Abrir o vi a partir do endereço
'''Configurar interface de rede:'''


E fazer as seguintes alterações:
apt-get remove isc-dhcp-client


<pre>iface et0 inet static
vim /etc/network/interfaces
address 192.168.2.253
 
netmask 255.255.255.0
<pre>
gateway 192.168.2.1
# This file describes the network interfaces available on your system
dns-nameserver 200.135.37.65
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo eth0
iface lo inet loopback
        address 127.0.0.1
        netmask 255.0.0.0
# a interface ethernet eth0
iface eth0 inet static
address 192.168.2. X
netmask 255.255.255.0
gateway 192.168.2.1
        dns-nameservers 200.135.37.65
</pre>
</pre>
ifdown --exclude=lo -a && ifup --exclude=lo -a


----
----

Edição atual tal como às 08h06min de 10 de fevereiro de 2015

EQUIPE : TAMIRES, GABRIEL, DANILO, HENRIQUE.

Projeto III


1 06/02/2014

Serviços e Servidores: Radius, Web, Webmail. DNS, DHCP, Web Câmeras, Alarmes, Sypy, NAT, Roteamento, Firewall, Monitoramento de tráfego, Autenticação de rede sem fio.

Formatação, criação de partições e montagem.

  • Comandos Utilizados

apt-get --help - Verificar

apt-get dist-upgrade - Atualizar os pacotes

apt-get install ssh - Acesso remoto

Fazendo o acesso remoto:

ssh usuario@192.168.2.215 
senha do usuário

Acesso remoto funcionando!

1.1 09/02/2014

Configurar interface de rede:

apt-get remove isc-dhcp-client

vim /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 eth0
iface lo inet loopback
        address 127.0.0.1
        netmask 255.0.0.0
 
# a interface ethernet eth0
iface eth0 inet static
	address 192.168.2. X
	netmask 255.255.255.0
	gateway 192.168.2.1
        dns-nameservers 200.135.37.65

ifdown --exclude=lo -a && ifup --exclude=lo -a