LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   dedian network setup problem (https://www.linuxquestions.org/questions/linux-newbie-8/dedian-network-setup-problem-614939/)

asparagus 01-20-2008 06:03 AM

dedian network setup problem
 
installed using debian 40r2 xfce cd1 but there is no network manager into myy desktop. canu tell me how can i connect to internet using static network sddress provided by my connection proveders. i am using a 10 mb lan.

sycamorex 01-20-2008 06:56 AM

you can modify /etc/network/interfaces file.
Mine for example looks as follows:


Quote:

# 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
allow-hotplug eth1
iface eth1 inet static
address 192.168.2.101
netmask 255.255.255.0
network 192.168.2.0
broadcast 192.168.2.255
gateway 192.168.2.1

dns-nameservers 192.168.2.1
dns-search com

auto eth1

then restart the network or your system

hth


All times are GMT -5. The time now is 04:28 PM.