Configure NTP Server on Centos 7

The Network Time Protocol (NTP) is used to synchronize the time of a computer client or server to another server. To install ntp on centos 7 using commands below: [root@tekbloq ~]# yum -y install ntp To configure ntp server you needs to open configuration file /etc/ntp.conf.… Read More

How to Disable Network Manager on Centos 7

This article describes how to disable the Network Manager service. The Network Manager service automates the network’s settings and disrupts connections to the IP addresses. It is recommended that you disable the Network Manager service and enable the network.service service before you install any web or another role and services. To disable the… Read More

Change the Hostname of a CentOS Server

For changing the Hostname of a CentOS Server follow steps below: Open the global network configuration file: nano /etc/sysconfig/network Find the HOSTNAME setting. It’s default value will looks like below: HOSTNAME=localhost Replace that localhost value with chosen fully qualified domain name. HOSTNAME=centos.tekbloq.com Save changes and exit and reboot… Read More

HowTo Change IP Address on FreeBSD?

Today I will  explain how to configure  network configuration in FreeBSD. So Lets begin: In the file /etc/rc.conf  we can set static  ip address and default gateway and etc. For example  you can set values as follows: hostname=”tekbloq.com” ifconfig_lnc0=”inet 192.168.0.2 netmask 255.255.255.0″ defaultrouter=”192.168.0.1″       2.… Read More