<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IPv6 &#8211; VeriTeknik</title>
	<atom:link href="https://www.veriteknik.net.tr/en/tag/ipv6/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.veriteknik.net.tr/en/</link>
	<description>VeriTeknik Bilişim &#124; VeriTeknik Bilişim</description>
	<lastBuildDate>Sun, 10 Jan 2021 16:51:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Bind Multiple IP Addresses on a Single Network Card IPv4 &#038; IPv6</title>
		<link>https://www.veriteknik.net.tr/en/bind-multiple-ip-addresses-on-a-single-network-card/</link>
					<comments>https://www.veriteknik.net.tr/en/bind-multiple-ip-addresses-on-a-single-network-card/#respond</comments>
		
		<dc:creator><![CDATA[Mustafa Emre Aydın]]></dc:creator>
		<pubDate>Wed, 02 May 2012 10:03:38 +0000</pubDate>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[bind]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[ipv4]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>
		<guid isPermaLink="false">http://www.plugged.in/?p=366</guid>

					<description><![CDATA[<p>The beauty of having multiple IP addresses on a single server is that you can run several services with different addressing. This way you can announce your FTP service on a different address and your HTTP on another. Below I&#8217;ll describe how to achieve this in Debian based and Red Hat based distros seperately. Using [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/bind-multiple-ip-addresses-on-a-single-network-card/">Bind Multiple IP Addresses on a Single Network Card IPv4 &#038; IPv6</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The beauty of having multiple IP addresses on a single server is that you can run several services with different addressing. This way you can announce your FTP service on a different address and your HTTP on another.</p>
<p>Below I&#8217;ll describe how to achieve this in Debian based and Red Hat based distros seperately.</p>
<p>Using Debian based distros (Ubuntu, Mint etc.), setting multiple IP addresses on a single network interface is simple.</p>
<p>What we will do is to edit the /etc/network/interfaces file.<br />
If you are using DHCP, then your file should look similar to this,</p>
<pre class="brush: text; gutter: true; first-line: 1">auto eth0
iface eth0 inet dhcp

auto eth0:0
iface eth0:0 inet dhcp
iface eth0:0 inet6 dhcp</pre>
<p>Here, the <strong>eth0:0</strong> is how we get the secondary IP address on the <strong>eth0</strong> device.</p>
<p>If you&#8217;re using a static IP address instead of DHCP, then your interfaces file should be like,</p>
<pre class="brush: text; gutter: true; first-line: 1">auto eth0
iface eth0 inet static
address 10.20.30.40
netmask 255.255.255.0
network 10.20.30.0
broadcast 10.20.30.255
gateway 10.20.30.1
dns-nameservers 8.8.8.8

iface eth0 inet6 static
address 2f00:7300:100::10
netmask 64

auto eth0:0
iface eth0:0 inet static
address 10.20.30.41
netmask 255.255.255.0

iface eth0:0 inet6 static
address 2f00:7300:100::11
netmask 64</pre>
<p>You can add as many as you want, such as <strong>eth0:1</strong>, <strong>eth0:2</strong> &#8230;</p>
<p>Sometimes when adding multiple IPv6 addresses on Debian systems, it is possible that you get an error. The current workaround for that is to enable and disable the device a couple of times. You can find the solution to that problem <a href="https://bugs.launchpad.net/ubuntu/+source/ifupdown/+bug/617978" target="_blank">here</a>.</p>
<p>In Red Hat based distros (CentOS, Fedora etc.), the interfaces are edited through the directory <strong>/etc/sysconfig/network-scritps</strong>. Here we have multiple files, each pointing for a device. For instance, to have 2 additional IP&#8217;s on a single ethernet device (totaling 3 addresses) we should have 3 files as follows,</p>
<p><strong>/etc/sysconfig/network-scripts/ifcfg-eth0<br />
/etc/sysconfig/network-scripts/ifcfg-eth0:1<br />
/etc/sysconfig/network-scripts/ifcfg-eth0:2</strong></p>
<p>The main device file would be just a standard one, we don&#8217;t have to change anything with it.<br />
On the other hand, the <strong>ifcfg-eth0:1</strong> file should be similar to this,</p>
<pre class="brush: text; gutter: true; first-line: 1">NAME=""
BOOTPROTO=static
MACADDR=""
IPV6INIT=no
DEVICE=eth0:1
NETMASK=255.255.255.0
MTU=""
BROADCAST=10.20.30.255
ONPARENT=yes
IPADDR=10.20.30.41
NETWORK=10.20.30.0
IPV6INIT=yes
IPV6ADDR=2f00:7300:100::11
IPV6_DEFAULTGW=2f00:7300:100::1
ONBOOT=yes</pre>
<p>This would suffice. Don&#8217;t forget to restart your network services after adding the lines (or files) to with your appropriate settings.</p>
<p>For Debian : <strong>$ /etc/init.d/networking stop &amp;&amp; /etc/init.d/networking start</strong><br />
For Red Hat : <strong>$ service network restart</strong></p>
<p>For additional IPv6 addresses you should need to add IPV6ADDR_SECONDARIES=&#8221;&#8221; line to /etc/sysconfig/network-scripts/ifcfg-eth0 file</p>
<pre class="brush: text; gutter: true; first-line: 1">IPV6INIT=yes
IPV6ADDR=2f00:7300:1::2/64
IPV6ADDR_SECONDARIES="2f00:7300:1::3/64 2f00:7300:1::4/64 2f00:7300:1::fff4/64 2f00:7300:1::fff5/64"</pre>
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/bind-multiple-ip-addresses-on-a-single-network-card/">Bind Multiple IP Addresses on a Single Network Card IPv4 &#038; IPv6</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.veriteknik.net.tr/en/bind-multiple-ip-addresses-on-a-single-network-card/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">366</post-id>	</item>
		<item>
		<title>Cisco Router IPv6 Configuration</title>
		<link>https://www.veriteknik.net.tr/en/cisco-router-ipv6-configuration/</link>
					<comments>https://www.veriteknik.net.tr/en/cisco-router-ipv6-configuration/#respond</comments>
		
		<dc:creator><![CDATA[ckaraca]]></dc:creator>
		<pubDate>Mon, 18 Jul 2011 08:33:30 +0000</pubDate>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[router]]></category>
		<guid isPermaLink="false">http://www.plugged.in/?p=181</guid>

					<description><![CDATA[<p>At the beginning of the year 2011, we decided to apply the IPv6 configuration to our data center (VeriTeknik) and requested our IPv6 block from RIPE. RIRs give out /32 blocks to LIRs at the first assignment. This article describes basic Cisco IPv6 configuration. The Preparation Steps Request your IPv6 Addresses from your RIR or [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/cisco-router-ipv6-configuration/">Cisco Router IPv6 Configuration</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>At the beginning of the year 2011, we decided to apply the IPv6 configuration to our data center (<a title="VeriTeknik" href="http://www.veriteknik.com/en" target="_blank" rel="noopener">VeriTeknik</a>) and requested our IPv6 block from RIPE. RIRs give out /32 blocks to LIRs at the first assignment. This article describes basic Cisco IPv6 configuration.</p>
<h3>The Preparation Steps</h3>
<ol>
<li>Request your IPv6 Addresses from your RIR or LIR</li>
<li>Add IPv6 Route to your AS number in LIR Portal</li>
<li>Get your IPv6 VLAN IP from your Upstream Provider</li>
<li>Configure your router</li>
</ol>
<h3>Configuring Cisco Routers for IPv6</h3>
<p>Before you start applying IPv6 on your routers make sure that you backup your current configuration.</p>
<p>First of all, make a table of your arguments such as your IP addresses, AS numbers etc like below, we put some values for you to easily analyze the configuration:</p>
<table border="0">
<tbody>
<tr>
<td style="text-align: left;"><strong>Your AS Number</strong></td>
<td style="text-align: left;">AS65535</td>
</tr>
<tr>
<td style="text-align: left;"><strong>Remote As Number</strong></td>
<td style="text-align: left;">AS1000</td>
</tr>
<tr>
<td style="text-align: left;"><strong>VLAN IP Your Side (Given by Telco op)</strong></td>
<td style="text-align: left;">2A01:358:4500:2::2/64</td>
</tr>
<tr>
<td style="text-align: left;"><strong>VLAN IP remote Side (Telco Side)</strong></td>
<td style="text-align: left;">2A01:358:4500:2::1</td>
</tr>
<tr>
<td style="text-align: left;"><strong>Your IPv6 Addresses to Announce</strong></td>
<td style="text-align: left;">2B00:7300::/32</td>
</tr>
</tbody>
</table>
<p><strong>Enable IPv6 &amp; IPv6 CEF on your Cisco router:</strong></p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">ipv6 unicast-routing
ipv6 cef
!</pre>
<p><strong>Set your IPv6 address to the interface facing telco:</strong></p>
<p>Don&#8217;t delete your IPv4 configuration or other necessary codes, just add</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">interface GigabitEthernet0/0
description $ETH-WAN$
ipv6 address 2A01:358:4500:2::2/64
ipv6 enable
ipv6 virtual-reassembly
..
..
!</pre>
<p><strong>Switch to BGP configuration by typing &#8220;router bgp 65535&#8221;</strong></p>
<p>add:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">router bgp 65535
.
.
neighbor 2A01:358:4500:2::1 remote-as 1000
!</pre>
<p>type exit and type <strong>address-family ipv6</strong> to enter IPv6 configuration</p>
<p>to announce your prefixes type:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">address-family ipv6
neighbor 2A01:358:4500:2::1 activate
distance bgp 200 200 200
network 2B00:7300::/32
network 2B00:7300:100::/48
redistribute connected
redistribute static
no synchronization
exit-address-family
!</pre>
<p>Type exit one more and you need to add routes for your IPv6 addresses,</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">ipv6 route 2B00:7300::/32 Null0 254</pre>
<p>This is the basic IPv6 configuration for Cisco routers, now you should be able to communicate with IPv6 enabled hosts. To test your configuration you may assign IPv6 to one of your VLANs, an example given below:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">interface GigabitEthernet0/1.201
description LOCAL
encapsulation dot1Q 201
.
.
ipv6 address 2B00:7300:100::1/48
!</pre>
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/cisco-router-ipv6-configuration/">Cisco Router IPv6 Configuration</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.veriteknik.net.tr/en/cisco-router-ipv6-configuration/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">181</post-id>	</item>
		<item>
		<title>Disabling IPv6 in Linux</title>
		<link>https://www.veriteknik.net.tr/en/disabling-ipv6-in-linux/</link>
					<comments>https://www.veriteknik.net.tr/en/disabling-ipv6-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[ckaraca]]></dc:creator>
		<pubDate>Mon, 25 Apr 2011 15:31:19 +0000</pubDate>
				<category><![CDATA[LINUX Help]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[linux]]></category>
		<guid isPermaLink="false">http://www.plugged.in/?p=106</guid>

					<description><![CDATA[<p>In default LINUX installation IPv6 is enabled. IPv6 might use system resources or for what ever reason you have Run this command as root: echo &#8220;alias net-pf-10 off&#8221; &#62;&#62; /etc/modprobe.conf echo &#8220;alias ipv6 off&#8221; &#62;&#62; /etc/modprobe.conf You need to restart your server after this command.</p>
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/disabling-ipv6-in-linux/">Disabling IPv6 in Linux</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In default LINUX installation IPv6 is enabled. IPv6 might use system resources or for what ever reason you have</p>
<p>Run this command as root:</p>
<blockquote><p>echo &#8220;alias net-pf-10 off&#8221; &gt;&gt; /etc/modprobe.conf echo &#8220;alias ipv6 off&#8221; &gt;&gt; /etc/modprobe.conf</p></blockquote>
<p>You need to restart your server after this command.</p>
<hr />
<p>The post <a rel="nofollow" href="https://www.veriteknik.net.tr/en/disabling-ipv6-in-linux/">Disabling IPv6 in Linux</a> appeared first on <a rel="nofollow" href="https://www.veriteknik.net.tr/en/">VeriTeknik</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.veriteknik.net.tr/en/disabling-ipv6-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">106</post-id>	</item>
	</channel>
</rss>
