Le Lundi 8 Octobre 2001 14:08, Marcel Figuerola Estrada a écrit : > Hello, > > I've just installed debian, and my question is very simple: just, what I > have to configure my network card. This is, set my computer private ip, the > gateway, the router ip address and the dns my provider gave me. > > Thank you! > > Marcel
You just need to set up the file /etc/network/interfaces ( see man interfaces ) Here is one example (dhcp) # automatically added when upgrading auto lo iface lo inet static address 127.0.0.1 netmask 255.0.0.0 # automatically added when upgrading auto eth0 iface eth0 inet dhcp The same with static # automatically added when upgrading auto lo iface lo inet static address 127.0.0.1 netmask 255.0.0.0 # automatically added when upgrading auto eth0 iface eth0 inet static address 192.168.0.10 netmask 255.255.255.0 It is also possible to use debconf (forgot how...) JPS. -- Jean-Paul Smets-Solanes <[EMAIL PROTECTED]> GPG Fingerprint: 40FF FA78 75AA 680D 8BB4 EEF9 539A 79CC CB8E 5F01