Pages : 1
#1 Le 31/01/2006, à 10:39
- Yoann95220
[résolu] Ip en Static
Bonjour,
J'ai installé Ubuntu-5.10-server-release tous c'est trés bien passé et tous fonctionne.
je besoin maintenant d'avoir un ip fixe mais c'est la que ...
Le problem se pose quand je modifie le fichier "/etc/network/interfaces" comme décrit dans la documentation et sur differents poste du forum.
Ma config: carte reseau Realtek intégré sur Asus P5GD1,LiveBox, Kernel 2.6.12-10-AMD64-XEON
donc j'ai modifié le fichier "interfaces":
-->> iface eth0 inet dhcp
deviens
-->> iface eth0 inet static
address 192.168.1.22 <--l'address du server ubuntu(ma machine local)
netmask 255.255.255.0
gateway 192.168.1.1 <-- La livebox
Puis un "sudo reboot" (je ne sais pas relancer /etc/init.d/networking)
Et la plus de reseau
PS : Je suis tous nouveau sur Ubuntu
Merci de votre aide
Dernière modification par Yoann95220 (Le 31/01/2006, à 20:51)
Hors ligne
#2 Le 31/01/2006, à 11:02
- djorb
Re : [résolu] Ip en Static
Salut
Essaye d'ajouter
auto eth0
Avant le reste ...
Ajoute également
network 192.168.1.0
Ce qui te donne
auto eth0
iface eth0 inet static
address 192.168.1.22
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
Dernière modification par djorb (Le 31/01/2006, à 11:07)
Hors ligne
#3 Le 31/01/2006, à 19:44
- Yoann95220
Re : [résolu] Ip en Static
Salut,
Donc j'ai essaié :
auto eth0
iface eth0 inet static
address 192.168.1.22
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0 (j'ai aussi tester avec 192.168.1.1)
mais rien à faire ça re fonctionne pas
quand je fait par exemple un
sudo apt-get update
j'ai le message :
101 le reseau n'est pas accessible
puis quand je remet en dhcp:
iface eth0 inet dhcp
Cela fonctionne.
Merci d'avance
Dernière modification par Yoann95220 (Le 31/01/2006, à 19:45)
Hors ligne
#4 Le 31/01/2006, à 19:47
- Achille
Re : [résolu] Ip en Static
Si ça peut aider, voici mon fichier /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
# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth0
# The primary network interface
iface eth0 inet static
address 192.168.1.4
netmask 255.255.255.248
gateway 192.168.1.1
auto eth0
Hors ligne
#5 Le 31/01/2006, à 20:29
- Yoann95220
Re : [résolu] Ip en Static
Merci ça fonctionne
mon fichier /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
# This is a list of hotpluggable network interfaces.
# They will be activated automatically by the hotplug subsystem.
mapping hotplug
script grep
map eth0
# The primary network interface
iface eth0 inet static
address 192.168.1.22
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0 <-- je sais pas si c'est necessaire ?
auto eth0
@Bientot
Hors ligne
#6 Le 31/01/2006, à 20:36
- djorb
Re : [résolu] Ip en Static
Peux tu, avec l'ip en staic, faire un
ping www.cisco.com
et copier le resultat ?
Sinon tu peux toujours esssayer mon fichier
auto eth0
iface eth0 inet static
address 192.168.1.22
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
nameserver 209.244.0.4
peut être le DNS qui manque.
Hors ligne
#7 Le 31/01/2006, à 20:43
- Achille
Re : [résolu] Ip en Static
Si ça fonctionne et que le problème est résolu, merci d'ajouter [résolu] au titre du sujet en modifiant ton premier message.
Hors ligne
Pages : 1