That would depend on whether you wish to use the GUI or the command line.
GUI (Graphical User Interface) will have something in the system options on setting up a network. SuSE, Fedora, Mandriva, etc. have some easy to follow setup options.
Command line is a little different. Some of the commands are:
for IP/Subnet Mask = root@#ifconfig eth0 192.168.1.5/24
root@#ifconfig eth0 192.168.1.5/255.255.255.0
Gateway = root@#route add default gw 192.168.1.1 eth0
DNS = got me on that one, still not quite sure
Also, check out this location on your HardDrive: /etc/sysconfig/network-scripts
On that DNS issue: I found this on
http://www.comptechdoc.org/os/linux/usersguide/linux_ugbasicnet.html So check it out:
/etc/named.conf - Used for domain name service to configure named. Other files used are dependent on this file. This file is explained further in the DNS section
/etc/resolv.conf - Specifies the domain to be searched for host names to connect to, the nameserver address, and the search order for the nameservers.
domain mycompany.com
search mycompany.com mynet.net
nameserver 192.168.1.100
nameserver 192.168.199.1
nameserver 192.168.1.10
The third line specifies that DNS should be tried on my machine first then use the normal nameserver on the fifth line. The fourth line specifies that my machine is running nameservices on another network which is using interface 192.168.199.1. This assumes the nameserver is set up on my machine which is explained in another section.