thiagoThid
(usa Ubuntu)
Enviado em 31/07/2014 - 21:27h
Na verdade eu estou montando um servidor.. kkkkkk
Ele esta assim:
1- /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
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet static
address 10.0.0.1
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
#############################
2- sudo vim /etc/sysctl.conf
net.ipv4.ip_forward=1
###########
3 - sudo vim /etc/init.d/internet
#!/bin/bash
iniciar(){
modprobe iptable_nat
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
}
parar(){
iptables -F -t nat
}
case "$1" in
"start") iniciar ;;
"stop") parar ;;
"restart") parar; iniciar ;;
*) echo "Use os parâmetros start ou stop"
esac
#################
4- sudo vim /etc/dhcp/dhcpd.conf
ddns-update-style none;
option domain-name "ubuntu"
default-lease-time 600;
max-lease-time 7200;
authoritative;
log-facility local7;
subnet 10.0.0.0 netmask 255.255.255.0{
range 10.0.0.1 10.0.0.255;
option subnet-mask 255.255.255.0;
option routers 10.0.0.1;
option domain-name-servers 10.0.0.1, 8.8.8.8;
option broadcast-address 10.0.0.255;
}
############
Então o meu servidor roda normal, porem, ele não manda ips para as maquinas dos setores automaticamente!
Como faço para meu servidor mandar ip dinamicamente?
OBS: eu coloco allow-hotplug eth1, para de funcionar a eth1.
E se eu tiver mais que 255 maquinas na minha rede, como eu configuraria esse servidor pra mais que "255" maquinas?