cancel
Showing results for 
Search instead for 
Did you mean: 
  • 1,193 Views

how to set up ipv6 on rhel 6.4

i am running ipv4 with 192.168.1.0/24 rhel 6.4 machine for many years.

recently i want to upgrade to ipv6 global address. here is my request:

ipv4 with fixed 192.168.1.0.24 keep no change.

ipv6 auto config.

how to?

any help will be appreciate.

0 Kudos
1 Reply
  • 1,111 Views

Below we have described how you can configure an IPv6 address on your Cloud VPS or Dedicated Server with CentOS 6. Please make sure that you follow the steps of this tutorial for a successful configuration.

Prerequisites
If you do not have an IPv6 address assigned, the first step is to send an email to support@snel.com in order the get the required information.

Step 1: Log in to your server
Open a terminal and log in to your server using SSH.

$ ssh root@ip_address_or_domain
Step 2: Open your network interface
Open your network interface file with your favorite editor. We have used nano in our example. The command below will open an empty file to create the eth1 interface.

$ sudo /etc/sysconfig/network-scripts/ifcfg-eth1
Step 3: Add the IPv6 to your network configuration
Use the information from step 1. Add a new block to the end of the file for the IPv6 interface. It should look like the configuration below. Replace the text with your own configuration. Save it once you have added the IPv6 block.

DEVICE="eth1"
ONBOOT="yes"
BOOTPROTO="static"
IPV6INIT="yes"
IPV6ADDR="2a00:7b80:451:1::XXX/48"
451

:1::
XXX

/48"
The red marked number is the VLAN id which is used. The VLAN of this IPv6 is VLAN 451.

Step 4: Restart the network service
You have a few options to enable IPv6. The easiest way is to restart the networking service. You can use the commands below to restart the network service.

$ sudo /etc/init.d/networking restart
Step 5: Test IPv6
The final step is to check whether the configured IPv6 is working. If your own working station is supporting IPv6 you can test it through your terminal. You can find the commands below per Operating System

Windows:

$ ping -6 2a00:7b80:451:1::8
Linux:

$ ping6 2a00:7b80:451:1::8
MacOS:

$ ping6 2a00:7b80:451:1::8
Conlusion
Congratulations! You have now successfully configured your IPv6 address on CentOS 6.

Thank pod mod antalya

0 Kudos
Join the discussion
You must log in to join this conversation.