Test your skills on our all Hosting services and get 15% off!

Use code at checkout:

Skills
01.11.2024

How to Configure Networking in CentOS

Configuring networking in CentOS is essential for connecting your server to the internet or a local network. This guide will cover the basic steps for setting up a network interface on CentOS, including configuring static IP addresses and managing network services.

1. Understanding Network Interfaces

In CentOS, network interfaces are represented by files located in the /etc/sysconfig/network-scripts/ directory. Each interface has its configuration file named ifcfg-<interface_name>, where <interface_name> is typically eth0, ens33, or similar.

2. Identifying Network Interfaces

Before configuring networking, identify the available network interfaces on your CentOS system:

  1. Open a Terminal: Access the terminal via SSH or directly on the server.
  2. List Network Interfaces: Run the following command:
    ip addr

    This command displays a list of all network interfaces and their current statuses.

3. Configuring a Static IP Address

To set up a static IP address for your network interface, follow these steps:

Step 1: Edit the Network Interface Configuration File

  1. Open the Configuration File: Use a text editor (like nano or vi) to edit the appropriate ifcfg file. For example, if your interface is ens33:
    sudo nano /etc/sysconfig/network-scripts/ifcfg-ens33
  2. Add or Modify Configuration Parameters: Ensure the following parameters are set in the file:
    DEVICE=ens33 TYPE=Ethernet BOOTPROTO=none ONBOOT=yes IPADDR=192.168.1.100 # Replace with your desired static IP address NETMASK=255.255.255.0 # Replace with your network’s subnet mask GATEWAY=192.168.1.1 # Replace with your network’s gateway DNS1=8.8.8.8 # Primary DNS server DNS2=8.8.4.4 # Secondary DNS server (optional)

    Adjust the values according to your network settings.

Step 2: Save and Exit

Save the changes and exit the text editor (for nano, press CTRL + X, then Y, and Enter).

4. Configuring DHCP (Dynamic Host Configuration Protocol)

If you prefer to configure your interface to use DHCP for automatic IP addressing, follow these steps:

  1. Open the Configuration File:
    sudo nano /etc/sysconfig/network-scripts/ifcfg-ens33
  2. Modify the Configuration Parameters:

    Replace the existing parameters with:

    DEVICE=ens33 TYPE=Ethernet BOOTPROTO=dhcp ONBOOT=yes
  3. Save and Exit.

5. Restarting the Network Service

After configuring the network interface, restart the network service for the changes to take effect:

sudo systemctl restart network

6. Verifying Network Configuration

To verify that your network configuration is working correctly:

  1. Check IP Address: Use the following command to display the current IP address of the interface:
    ip addr show ens33
  2. Test Connectivity: Ping an external address to test connectivity:
    ping -c 4 google.com

    If you receive responses, your network is functioning correctly.

7. Troubleshooting Common Networking Issues

  • Network Not Starting: Ensure that the configuration file has the correct settings, particularly ONBOOT=yes.
  • No Connectivity: Check your gateway and DNS settings. Ensure the network cable is connected if using a physical server.
  • Firewall Issues: Verify that your firewall settings are not blocking traffic. Use the following commands to check and adjust firewall settings:
    sudo firewall-cmd –list-all sudo firewall-cmd –add-service=http –permanent sudo firewall-cmd –reload

Conclusion

Configuring networking in CentOS is a straightforward process that allows you to set up static or dynamic IP addresses according to your needs. By following this guide, you can effectively manage your server’s network interfaces and ensure connectivity to the internet or local networks. Regularly check your configurations and monitor your network status to maintain optimal performance.

Test your skills on our all Hosting services and get 15% off!

Use code at checkout:

Skills