Configurando rede: mudanças entre as edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 3: | Linha 3: | ||
=== DHCP === | === DHCP === | ||
No terminal do comandos como root: | |||
Para interface de rede= eth0 | |||
* dhclient eth0 | |||
Se o MAC ADDRESS da placa de rede eth0 estiver cadastrada no servidor de DHCP o resultado será algo parecido: | |||
#~ dhclient eth0 | |||
Internet Systems Consortium DHCP Client V3.1.1 | |||
Copyright 2004-2008 Internet Systems Consortium. | |||
All rights reserved. | |||
For info, please visit http://www.isc.org/sw/dhcp/ | |||
Listening on LPF/eth0/00:1c:c0:a3:96:3c | |||
Sending on LPF/eth0/00:1c:c0:a3:96:3c | |||
Sending on Socket/fallback | |||
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8 | |||
DHCPOFFER of 192.168.0.100 from 192.168.0.1 | |||
DHCPREQUEST of 192.168.0.100 on eth0 to 255.255.255.255 port 67 | |||
DHCPACK of 192.168.0.100 from 192.168.0.1 | |||
* Reloading /etc/samba/smb.conf smbd only | |||
...done. | |||
bound to 192.168.0.100 -- renewal in 872570274 seconds. | |||
Neste caso a interface de rede eth0 do PC recebe o IP 192.168.0.100 do servidor de DHCP 192.168.0.1. | |||
Pronto! | |||
---- | ---- | ||
Linha 33: | Linha 55: | ||
Configurar roteador: | Configurar roteador: | ||
* route add default gw 192.168.0.1 | * route add default gw 192.168.0.1 | ||
Obs.: Configurações feitas via ifconfig se perdem ao reiniciar o sistema operacional. | |||
Pronto! <br> | Pronto! <br> | ||
<br> | <br> | ||
'''2) Configurações permanentes:'''<br> | '''2) Configurações permanentes:'''<br> |
Edição das 19h41min de 26 de maio de 2010
Configurações de Rede
Há diferentes maneiras de configurar uma rede no linux.
DHCP
No terminal do comandos como root: Para interface de rede= eth0
- dhclient eth0
Se o MAC ADDRESS da placa de rede eth0 estiver cadastrada no servidor de DHCP o resultado será algo parecido:
#~ dhclient eth0 Internet Systems Consortium DHCP Client V3.1.1 Copyright 2004-2008 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/sw/dhcp/ Listening on LPF/eth0/00:1c:c0:a3:96:3c Sending on LPF/eth0/00:1c:c0:a3:96:3c Sending on Socket/fallback DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8 DHCPOFFER of 192.168.0.100 from 192.168.0.1 DHCPREQUEST of 192.168.0.100 on eth0 to 255.255.255.255 port 67 DHCPACK of 192.168.0.100 from 192.168.0.1 * Reloading /etc/samba/smb.conf smbd only ...done. bound to 192.168.0.100 -- renewal in 872570274 seconds.
Neste caso a interface de rede eth0 do PC recebe o IP 192.168.0.100 do servidor de DHCP 192.168.0.1.
Pronto!
IP FIXO
Considerando:
if_face= interface de rede = eth0
IP= 192.168.0.100
Mascara de rede= 255.255.255.0
DNS1=192.168.0.2
DNS2=192.168.0.5
Gateway=192.168.0.1
dominio=dominio.com.br
1) Via ifconfig
Configurar e ativar a interface de rede:
- ifconfig eth0 192.168.0.100 netmask 255.255.252 up
Desativar a interface de rede:
- ifconfig eth0 down
Configurar DNS's:
Edite o arquivo /etc/resolv.conf insira as informações e salve.
- /etc/resolv.conf
domain dominio.com.br search dominio.com.br nameserver 192.168.0.2 nameserver 192.168.0.5
Configurar roteador:
- route add default gw 192.168.0.1
Obs.: Configurações feitas via ifconfig se perdem ao reiniciar o sistema operacional.
Pronto!
2) Configurações permanentes:
No terminal de comandos:
- nano /etc/network/interfaces
# The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 192.168.0.100 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 192.168.0.2 192.168.0.5 dns-search dominio.com.br
Reinicie o serviço de rede:
- /etc/init.d/networking restart
Pronto!
Link's Relacionados a esta página:
Ver detalhes da placa de rede, IP, MAC address,...