On Wed, Dec 22, 2010 at 2:45 PM, kannan.B Balan <[email protected]> wrote: > Hi all, > I want to configure the Network in Redhat Enterprise > Server 5.0. How to connect the client Suse Linux 10. > > Please Help Me! >
If you have DHCP from your MODEM, # dhclient eth0 should do the trick. It will tell you the ip assigned. Or else: # dhclient eth0 192.168.1.100 netmask 255.255.255.0 if you wish to assign the IP 192.168.1.100 And then this will assign the default gateway: # route add default gw 192.168.1.1 If the default gw is 1.1. And the name server resolution is handled by the file /etc/resolv.conf # cat > /etc/resolv.conf nameserver 4.2.2.2 That is it. -Girish -- Gayatri Hitech http://gayatri-hitech.com [email protected] _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
