Pages : 1
#1 Le 14/03/2006, à 17:42
- porky
Configuration du reseau avec Ubuntu
Bonjour,
J'ai modifié mon fichier /etc/network/interfaces comme ceci (pour ajouter une route statique) :
# 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 dhcp
up /sbin/route add -host 192.168.21.111 gw 192.168.28.254
iface eth1 inet static
address 192.168.21.254
netmask 255.255.255.0
broadcast 192.168.21.255
auto eth0
auto eth1
Pour que mes modifications soient prises en compte j'ai fait :
cd /etc/init.d
sudo ./networking restart (qui s'apparente au bon vieux service network restart)
mais cette commande a été sans effet.
Connaissez vous un moyen de demander a Ubuntu de recharger les fichiers de configuration réseau. Pour l'instant la seule solution que j'ai trouvée consistait a rebooter la machine .... pas top
Merci
#2 Le 14/03/2006, à 19:21
- ianic
Re : Configuration du reseau avec Ubuntu
ifup eth0 eth1 ?
Hors ligne