Month: July 2010

How To Assign Default Gateway In Linux?

How to Assign Default gateway in linux?Ans : In linux Default gateway is set through route command or GUI tools.Through Route command#route add default gw default-gatewayExample :#route add default gw 192.168.0.1Here 192.168.0.1 is the default gate of my system.Through GUI toolsUse system-config-network in terminal or GUI to set up default gateway. Please visit https://www.linuxnix.com for more linux admin...

Read More

How To View Default Gateway In Linux?

This is asked in some of the interviews. We can get default gateway information in linux in many ways. Such as viewing network card file or executing a command.To see default gateway by view network interface card file content.#cat /etc/sysconfig/networking/devices/interface-noExample :[root@example ~]# cat /etc/sysconfig/networking/devices/ifcfg-eth0# Intel Corporation 82546EB Gigabit Ethernet Controller (Copper)DEVICE=eth0BOOTPROTO=noneHWADDR=00:02:a5:4c:af:99ONBOOT=yesTYPE=EthernetNETMASK=255.255.255.0IPADDR=10.200.0.21GATEWAY=10.200.0.1Through route commandrouteExample:Kernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface192.168.0.0 * 255.255.255.0 U 0 0 0 eth110.78.0.0 * 255.255.255.0 U 0 0 0 eth0169.254.0.0 * 255.255.0.0 U 0 0 0 eth1default 10.200.0.1 0.0.0.0 UG 0 0 0 eth0Through ip route commandip routeExample :[root@example ~]# ip route192.168.0.0/24 dev eth1 proto kernel scope link src 192.168.0.110.78.0.0/24 dev eth0 proto kernel scope link src 10.78.0.21169.254.0.0/16 dev eth1 scope linkdefault via 10.200.0.1 dev eth0Through netstat commandnetstat -rExample:[root@example ~]# netstat -rKernel IP routing tableDestination Gateway Genmask Flags MSS Window irtt Iface192.168.0.0 * 255.255.255.0 U 0 0 0 eth110.78.0.0 * 255.255.255.0 U 0 0 0 eth0169.254.0.0 * 255.255.0.0 U 0 0 0 eth1default 10.200.0.1 0.0.0.0 UG 0 0 0 eth0Note:For any system/server there will be only one default gateway, if suppose if you assign two default gateways to your machine, your system will not come to know where to send the packets. Please visit https://www.linuxnix.com for more linux admin...

Read More

How To Assign Or Change Hostname In Linux and Unix?

Computers are assigned with a name as we do for humans beings. This is called hostname in computer world. So how to assign a hostname to a Linux system? Its very much simple. Before doing this we should know every task in Linux can be done in two ways : 1. Temporary way(once you boot your system the changes made in this way will go away) 2. Permanent way(Changes made in this way will be retained even after rebooting of the system). Before changing the hostname, check what is your present system name by using hostname command #hostname This command will show present system name. Now we will see how to assign a host name to a linux machine in both(temporary as well as permanent) ways. Temporary way : Use hostname command to change the host name #hostname your-system-nameExample : #hostname office-laptop.example.com Permanent way : Change hostname in Redhat/CentOS/Fedora : Edit /etc/sysconfig/network file, use HOSTNAME variable in that file to denote hostname. #vi /etc/sysconfig/network HOSTNAME=office-laptop.example.com Save the file and exit Then your hostname is changed permanently to your desired name. Change hostname in Ubuntu/Debian : Edit /etc/hostname, just write down what is your hostname in to that file. #vi /etc/hostname office-laptop.example.com Save the file and exit Then your hostname is changed permanently to your desired name. Please visit https://www.linuxnix.com for more linux admin...

Read More

Over 16,000 readers, Get fresh content from “The Linux juggernaut”

Email Subscribe

ABOUT ME..!

My photo
My name is Surendra Kumar Anne. I hail from Vijayawada which is cultural capital of south Indian state of Andhra Pradesh. I am a Linux evangelist who believes in Hard work, A down to earth person, Likes to share knowledge with others, Loves dogs, Likes photography. At present I work at Bank of America as Sr. Analyst Systems and Administration. You can contact me at surendra (@) linuxnix dot com.