<?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 World</title>
	<atom:link href="http://www.ipv6.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ipv6.in</link>
	<description>Ipv6 World</description>
	<lastBuildDate>Tue, 11 Oct 2011 01:19:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>In the IPv6 environment to configure Cisco IOS Firewall</title>
		<link>http://www.ipv6.in/in-the-ipv6-environment-to-configure-cisco-ios-firewall/</link>
		<comments>http://www.ipv6.in/in-the-ipv6-environment-to-configure-cisco-ios-firewall/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 01:19:00 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[firewalls]]></category>
		<category><![CDATA[ipv4]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/in-the-ipv6-environment-to-configure-cisco-ios-firewall/</guid>
		<description><![CDATA[With the depletion of IPv4 addresses, IPv4 addresses are a thing of the past, replaced by an IPv6 address. I found a lot of enterprise network managem[......]<p class='read-more'><a href='http://www.ipv6.in/in-the-ipv6-environment-to-configure-cisco-ios-firewall/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p style="float: right;margin: 4px;"><script type="text/javascript"><!--
google_ad_client = "pub-9963524811692470";
/* 336x280 */
google_ad_slot = "5188302489";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p> <p>With the depletion of IPv4 addresses, IPv4 addresses are a thing of the past, replaced by an IPv6 address. I found a lot of enterprise network management on migration to IPv6 issues seemed hesitant, probably felt this was a new area, migration can be a hassle. But the actual work, such as the firewall service adjustments, is not so difficult as you think. Cisco IOS Firewall configuration can support a variety of ways. Your device has the following static access-list:</p>
<p>access-list 101 permit tcp any host 10.1.1.1 eq www</p>
<p>access-list 101 permit tcp any host 10.1.1.1 eq ftp</p>
<p>access-list 101 permit tcp any host 10.1.1.1 eq 22</p>
<p>IPv6 routers, access-list configurations also exist just like with extensions of access-list.</p>
<p>IPv6 access list example:</p>
<p>permit tcp any host 2001:DB9:2:3::3 eq www sequence 10</p>
<p>permit tcp any host 2001:DB9:2:3::3 eq telnet sequence 20</p>
<p>permit tcp any host 2001:DB9:2:3::3 eq 22 sequence 30</p>
<p>permit tcp any host 2001:DB9:2:3::3 eq ftp sequence 40</p>
<p>Using the IP traffic-filter command IP access-group command control port than we are used to using it much more clear.</p>
<p>IOS in the Reflexive of Access-list:</p>
<p>interface Ethernet0/1</p>
<p>ip address 172.16.1.2 255.255.255.0</p>
<p>ip access-group inboundfilter in</p>
<p>ip access-group outboundfilter out</p>
<p>ip access-list extended inboundfilter</p>
<p>permit icmp 172.16.1.0 0.0.0.255 10.1.1.0 0.0.0.255</p>
<p>evaluate tcptraffic</p>
<p>ip access-list extended outboundfilter</p>
<p>permit icmp 10.1.1.0 0.0.0.255 172.16.1.0 0.0.0.255</p>
<p>permit tcp 10.1.1.0 0.0.0.255 172.16.1.0 0.0.0.255 reflect tcptraffic</p>
<p>Also need to configure IPv6 mode of reflexive access-lists, operation little difference:</p>
<p>interface Ethernet0/1</p>
<p>ipv6 address 2001:db9:1::1/64</p>
<p>ipv6 traffic-filter inboundfilter in</p>
<p>ipv6 traffic-filter outboundfilter out</p>
<p>ipv6 access-list inboundfilter</p>
<p>permit icmp host 2001:db8:1::F host 2001:db9:2::2</p>
<p>evaluate tcptraffic</p>
<p>ipv6 access-list outboundfilter</p>
<p>permit tcp any any reflect tcptraffic</p>
<p>Permit icmp any any</p>
<p>Content-based access control (CBAC) also known as IOS Firewall.</p>
<p>In the context of IPv4, the firewall looks like this:</p>
<p>ip inspect name FW tcp</p>
<p>!</p>
<p>interface Ethernet0</p>
<p>ip address 10.10.10.2 255.255.255.0</p>
<p>ip access-group 101 in</p>
<p>ip inspect FW in</p>
<p>!</p>
<p>interface Serial0.1 point-to-point</p>
<p>ip address 10.10.11.2 255.255.255.252</p>
<p>ip access-group 102 in</p>
<p>frame-relay interface-dlci 200 IETF</p>
<p>!</p>
<p>In the IPv6 environment, basically unchanged:</p>
<p>ip inspect name FW tcp</p>
<p>!</p>
<p>interface Ethernet0</p>
<p>ipv6 address 2001:db9:1::1/64</p>
<p>ipv6 traffic-filter inboundfilter in</p>
<p>ip inspect FW in</p>
<p>!</p>
<p>interface Serial0.1 point-to-point</p>
<p>ipv6 address 2001:db9:2::A/64</p>
<p>ipv6 traffic-filter outboundfilter in</p>
<p>frame-relay interface-dlci 200 IETF</p>
<p>!</p>
<p>There&#8217;s also a Zone-Based Firewall, IPv4 and IPv6 environments are like this:</p>
<p>class-map type inspect match-any MYPROTOS</p>
<p>match protocol tcp</p>
<p>match protocol udp</p>
<p>match protocol icmp</p>
<p>!</p>
<p>policy-map type inspect OUTBOUND</p>
<p>class type inspect MYPROTOS</p>
<p>inspect</p>
<p>!</p>
<p>zone security inside</p>
<p>zone security outside</p>
<p>!</p>
<p>zone-pair security IN&gt;OUT source inside destination outside</p>
<p>service-policy type inspect OUTBOUND</p>
<p>!</p>
<p>interface fastethernet0/0</p>
<p>zone-member security private</p>
<p>!</p>
<p>interface fastethernet0/1</p>
<p>zone-member security public</p>
<p>!</p>
<p>Through this strategy, you can add IPv4 or IPv6 address to port. TCP, UDP, and ICMP does not belong to the three-layer protocol, so the firewall service will not be affected.</p>
<p>Overall, above a very simple examples, mainly to one fact, Cisco IOS device configured on firewalls, whether IPv4 or IPv6 differences are rather big. So, now you can start to consider its enterprise network capable of supporting dual protocol, while the Firewall works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/in-the-ipv6-environment-to-configure-cisco-ios-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv4 addresses to be depleted global acceleration entering an era of IPv6</title>
		<link>http://www.ipv6.in/ipv4-addresses-to-be-depleted-global-acceleration-entering-an-era-of-ipv6/</link>
		<comments>http://www.ipv6.in/ipv4-addresses-to-be-depleted-global-acceleration-entering-an-era-of-ipv6/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 21:16:00 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[global]]></category>
		<category><![CDATA[ipv4]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/ipv4-addresses-to-be-depleted-global-acceleration-entering-an-era-of-ipv6/</guid>
		<description><![CDATA[As the global IPv4 address to be &#34;within the next few weeks&#34; used up, the industry generally believe that depleted in advance will accelerat[......]<p class='read-more'><a href='http://www.ipv6.in/ipv4-addresses-to-be-depleted-global-acceleration-entering-an-era-of-ipv6/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>As the global IPv4 address to be &quot;within the next few weeks&quot; used up, the industry generally believe that depleted in advance will accelerate the development of IPv6 IPv4 addresses, IPv6 is currently the only viable way to resolve IP address shortage.</p>
<p>Since last year, telecom operator China Telecom and China Mobile has launched pilot work in IPv6.</p>
<p>&quot;Father of the Internet&quot; wendun·SEFU is now the United States Google Vice President and Chief Internet consultant, in 1977, he created the Internet communication protocol &quot;IPv4&quot;, global computer link to each other. IP address is assigned to every computer, website or other networked devices a series of numbers, each IP address is unique.</p>
<p>Prior to this, the Internet Corporation for assigned names and numbers (ICANN) had been expected, the IPv4 address in August 2011, runs out. This expert believes that emphasis today around the world for Internet development, and popularization of intelligent Terminal is a significant cause of depletion of IPv4 addresses to speed up, and the only solution is to replace next-generation IP protocol IPv6.</p>
<p>Shanghai Securities analyst Zhang Tao said, with the present domestic computers and the number of mobile phone users, IPv4 can also support, but with the Internet for the network requirements grow, the IPv4 address is clearly not good enough, IPv6 can be thought of as the development of things for the future development of the necessary network ready.</p>
<p>World-wide transition from IPv4 to IPv6 protocol has been started. It is learnt that the GMT 24 hour starting on June 8, 2011 at 1 will be the first trial day IPv6 protocol system. By then, the Internet search engine Google and social sites &quot;Facebook&quot; (Facebook) and other sites will be the first to start IPv6 protocol systems, testing and analysis platform for users and engineers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/ipv4-addresses-to-be-depleted-global-acceleration-entering-an-era-of-ipv6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP that IPv6 is currently unprofitable Government and enterprises more actively</title>
		<link>http://www.ipv6.in/hp-that-ipv6-is-currently-unprofitable-government-and-enterprises-more-actively/</link>
		<comments>http://www.ipv6.in/hp-that-ipv6-is-currently-unprofitable-government-and-enterprises-more-actively/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 12:16:57 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/hp-that-ipv6-is-currently-unprofitable-government-and-enterprises-more-actively/</guid>
		<description><![CDATA[HP development prospects to IPv6 today negative, called IPv6 network equipment vendors will not make any money, because IPv6 equipment purchase lack of motivation, all the time is spent on solving software problems. HP said, Governments, international organizations should facilitate enterprises took the lead in deploying fiber optic broadband, so as to bring preconditions to the IPv6 development.[......]<p class='read-more'><a href='http://www.ipv6.in/hp-that-ipv6-is-currently-unprofitable-government-and-enterprises-more-actively/'></a></p>]]></description>
			<content:encoded><![CDATA[<p>HP development prospects to IPv6 today negative, called IPv6 network equipment vendors will not make any money, because IPv6 equipment purchase lack of motivation, all the time is spent on solving software problems. HP said, Governments, international organizations should facilitate enterprises took the lead in deploying fiber optic broadband, so as to bring preconditions to the IPv6 development.</p>
<p>Government incentive mechanism is extremely important, which can reduce and resolve during the transition to IPv6 infrastructure development of resistance.</p>
<p>HP said its networks Division has spent billions of dollars (most of the money from the printer and cartridge business) to boost the network providers and operators to upgrade to IPv6, but little income.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/hp-that-ipv6-is-currently-unprofitable-government-and-enterprises-more-actively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Malaysian Government to Fully Adopt IPV6 by End of 2012</title>
		<link>http://www.ipv6.in/malaysian-government-to-fully-adopt-ipv6-by-end-of-2012/</link>
		<comments>http://www.ipv6.in/malaysian-government-to-fully-adopt-ipv6-by-end-of-2012/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 09:24:46 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/malaysian-government-to-fully-adopt-ipv6-by-end-of-2012/</guid>
		<description><![CDATA[The Malaysian government is poised to fully adopt the Internet Protocol version 6 or IPv6 by the end of next year and may emerge as the first governme[......]<p class='read-more'><a href='http://www.ipv6.in/malaysian-government-to-fully-adopt-ipv6-by-end-of-2012/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>The Malaysian government is poised to fully adopt the Internet Protocol version 6 or IPv6 by the end of next year and may emerge as the first government in the world to achieve full IPv6 compliance, Deputy Information Communication and Culture Minister Datuk Joseph Salang said. According to the report several government agencies have already adopted IPv6 and several others are in the process of shifting from IPv4.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/malaysian-government-to-fully-adopt-ipv6-by-end-of-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use IPv6 protocol next-generation Internet of world of Warcraft</title>
		<link>http://www.ipv6.in/use-ipv6-protocol-next-generation-internet-of-world-of-warcraft/</link>
		<comments>http://www.ipv6.in/use-ipv6-protocol-next-generation-internet-of-world-of-warcraft/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 13:40:00 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[Warcraft]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/use-ipv6-protocol-next-generation-internet-of-world-of-warcraft/</guid>
		<description><![CDATA[Global IPv6 Day June last, with all major ISP and network vendors frequent the IPv6 Internet connection test preparation, perhaps no surprise at all. [......]<p class='read-more'><a href='http://www.ipv6.in/use-ipv6-protocol-next-generation-internet-of-world-of-warcraft/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>Global IPv6 Day June last, with all major ISP and network vendors frequent the IPv6 Internet connection test preparation, perhaps no surprise at all. But it is the unexpected Blizzard Entertainment, which is popular massively multiplayer online role playing game (MMORPG) of Warcraft (WOW) publishers, first to support the IPv6 protocol is selected.</p>
<p>For world of Warcraft players, with the release of Warcraft Patch version 4.1, using the IPv6 protocol is now belongs to the function that can be selected. Of course, before you use, the player must also have IPv6 connectivity. In accordance with the one from Blizzard employees within the company to say, if you do not start the IPv6 Internet connection, related IPv6 connectivity options are dimmed, lead to normal use.</p>
<p>In order to implement IPv6 on a network running world of Warcraft, pure IPv6 must be used. 6To4 is a dynamic tunneling mode, you can use IPv4 unicast to across the IPv4 Internet and Teredo is another type of tunneling technology, you can use models based on IPv4 Protocol User Datagram Protocol (UDP) packet sends an IPv6 packet.</p>
<p>Of course, in order to do this, in addition to IPv6 Internet connection, also need to ensure that the home network hardware supports the IPv6 protocol. Is, unfortunately, most consumer-level network device does not support the IPv6 protocol SOHO/.</p>
<p>For main interests are playing a game of world of Warcraft players, that option is not practical. Select use IPv6 protocol does not bring any additional benefits. Really the dead!</p>
<p>But in my estimation, due to the low number of users of IPv6 protocol, so the network may appear faster, transfer more stable situation. Blizzard provides IPv6 support for world of Warcraft&#8217;s real focus was to ensure that all the players and the game server is ready to meet the full deployment of IPv6 protocol work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/use-ipv6-protocol-next-generation-internet-of-world-of-warcraft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenDNS announces that started providing DNS services for IPv6 network</title>
		<link>http://www.ipv6.in/opendns-announces-that-started-providing-dns-services-for-ipv6-network/</link>
		<comments>http://www.ipv6.in/opendns-announces-that-started-providing-dns-services-for-ipv6-network/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 13:37:21 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[opendns]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/opendns-announces-that-started-providing-dns-services-for-ipv6-network/</guid>
		<description><![CDATA[As a mainstream third party domain name system (DNS) provider, OpenDNS has just officially announced the DNS support for IPv6 protocol. The company cl[......]<p class='read-more'><a href='http://www.ipv6.in/opendns-announces-that-started-providing-dns-services-for-ipv6-network/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>As a mainstream third party domain name system (DNS) provider, OpenDNS has just officially announced the DNS support for IPv6 protocol. The company claimed that: &quot;the OpenDNS is the world-wide the first recursive DNS service provider offering such services. &quot;Although I was not clear whether they belong to the real first, but for a network administrator, I know, this is a major step forward. Personally, I use OpenDNS for DNS check. Compared to DNS and use ISP-provided, faster identification of it, and compared with many other ISP&#8217;s DNS server, it&#8217;s reliability is higher.</p>
<p>With the complete exhaustion of the IPv4 Internet address, we need to work based on the IPv6 protocol for the Internet connection. For the Asian region, from now on to the last IPv4 address assignment out not too long. In support of the IPv6 protocol and 128-bit addresses, at least until Star Trek era before the advent of the Internet address, we no longer need to fear a shortage of network addresses on the Internet. However, in order to do this, use the IPv6 protocol, we need to be converted to the corresponding network.</p>
<p>IPv6-ready services provided by OpenDNS is designed as a sandbox environment, comprehensive management to the network, you can apply to networks of all sizes, from large enterprises to small and medium enterprises, from universities to compulsory education school district, even small organizations can also be included. By connecting the DNS test platform, network administrators can rehearse before project migration, ensure the problem does not occur in a real operation. For the vast majority of business users today, Internet service providers can address the issues of IPv6 address; in addition, you can also select one provided by Hurricane Electric free IPv6 tunnel services.</p>
<p>In a statement, Chief Executive of OpenDNS daiwei·youliweiqi claimed that: &quot;for every network administrator in the world, based on sandbox environment for IPv6-ready DNS services are services that must be used in the migration process. For network administrators without IPv6 protocol-related experience, which can help them establish a IPv6 Tunnel, use OpenDNS provides DNS service for IPv6 compatibility testing. The tester belongs to Internet services, worldwide can provide users with help of the migration from IPv4 to IPv6. Needless to say, we can for the company to become the world&#8217;s first IPv6-ready DNS Recursive DNS service provider and are very proud. &quot;</p>
<p>Now, let&#8217;s take a look at how they are using it. First, users need to make sure that you have IPv6 Internet connection is available. There is an easy way to meet this requirement, this is the Web site access Kaim. On this Web site provides support for IPv6, IPsec and Mobile IPv6 stack of free BSD Unix. It also provides a lovely sea turtle logo. If the turtle is in the &quot;swimming&quot; status, supporting IPv6 connections are available.</p>
<p>If you think that ISP connection support has been provided, but did not show up, you should ensure that the currently used network equipment compatible with the IPv6 protocol. A large number of small Office/Home Office (SOHO) hardware does not support the IPv6 protocol.</p>
<p>If your ISP does not support IPv6, but the equipment currently in use and the operating system has completed the preparatory work, you can select the Hurricane Electric IPv6 Tunnel proxy to connect to the IPv6 Internet. This free service to allow developers and researchers can use existing IPv4 tunneling using IPv6 host or router on the IPv6 router connected to the hurricane.</p>
<p>You can now get DNS service, enter the OpenDNS provides DNS address the IPv6 ready. They are:</p>
<p>2620:0:ccc::2</p>
<p>2620:0:ccd::2</p>
<p>Set step if you also want to know more, please visit the IPv6 application page comprehensive guide provided by OpenDNS</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/opendns-announces-that-started-providing-dns-services-for-ipv6-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 user WLAN security access</title>
		<link>http://www.ipv6.in/ipv6-user-wlan-security-access/</link>
		<comments>http://www.ipv6.in/ipv6-user-wlan-security-access/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 09:09:06 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/?p=27</guid>
		<description><![CDATA[Comware software platform as H3C core carrier (or known as a network operating system), to address wireless network access security design for IPv6 us[......]<p class='read-more'><a href='http://www.ipv6.in/ipv6-user-wlan-security-access/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>Comware software platform as H3C core carrier (or known as a network operating system), to address wireless network access security design for IPv6 users under a set of perfect handling.</p>
<p>Currently, Internet network is mainly based on the IPv4 protocol, but the deployment of IPv6 network has begun a wide-ranging, CNGI is one. However, the maturity of the IPv4 network, and security, are not fully applied to the IPv6 network. For example existing IPv6 access networks, is still open, the user can access, free access to addresses, change of address, is not subject to any constraints and limitations. Therefore, its more difficult of access security is guaranteed.</p>
<p>At this point WLAN is a large difference between wireless networks and wired network, wireless users need to authenticate, wireless access device to learn about every user online, understanding their corresponding MAC, keys and other information, so for wireless networking IPv6 user access security, can be distinguished from Wired some of the processing mechanisms. As hosts, including WLAN H3C unified software platform for all network features, Comware platform taking into account both in current common IPv4 network security, also consider the security of IPv6 network.</p>
<p>For users, their Internet identity, in the link layer is the MAC address, in network layer for the IP address, in the application layer for the Internet account. For WLAN networks, its link-layer security, which can correct use of the MAC on the 11i guarantee, but the user identifies the IP address of the packet, in particular cross-validity of a three-layer IP recognition after, will be to ensure the safety of users of important links. Existing wireless security technologies does not guarantee that the IP layer is reliable, even if IPv6 is not an example. Also, quite a lot of wireless network using a shared key mode, IPv6 users can actually link layer can exchange visits between, makes it possible to hostile sniffing attacks, also in serious security issue rather than a wired network.</p>
<p>Source address spoofed series security</p>
<p>In IPv4 networks, all networks are packet forgery problems faced. Traditional router when forwarding IP packets, packet-based IP addresses for the purpose of checking table forwards, not any authentication the authenticity of the message source address. Upper layer protocol based on IP protocols (for example, TCP,UDP) is identified using the IP address as the address of each other, as long as the attacker has forged packet source IP address, will be able to deceive each other, existing network applications such as device to attack the server. H3C series have been developed for IPv4 properties to prevent such attacks.</p>
<p>As with IPv4, IPv6 network packet forgery problems faced mainly packet source address forgery problems. And because IPv6 network is a new network, it is easy to neglect this issue. But the attacker has already begun &#8220;concern&#8221; it, and may launch new attacks on them.</p>
<p>Attacker spoofed message may be the data packet may also be the control message, the most important is the control message address assignments, resolve. In the IPv6 network, assign, resolve and address control messages are mainly related to the ND (Neighbor Discovery) protocol messages, the DHCPv6 protocol.</p>
<p>Attacks against the ND protocol has the following main categories,</p>
<p>L types: spoofing attacks. By sending forged NA/NS/RS messages, modify specific user on the terminal or gateway MAC address.</p>
<p>L type II: DoS attacks. By sending a large number of forged NS/RS messages, attack gateway, gateway ND number table overflow.</p>
<p>L-type III: DAD attack. NA message of forging, blocking the normal Terminal DAD process.</p>
<p>L type four: RA attacks. Of RA by sending forged packets, spoofing Terminal on the network, configure network parameters for the error.</p>
<p>Main forged against the attacks of the DHCPv6 protocol DHCPv6 server attacks. If the erection of unauthorized pseudo DHCPv6 server exists on the network, it may cause a DHCPv6 client gets the wrong IPv6 address, and network configuration parameters, unable to communicate properly.</p>
<p>Comware platforms designed SAVI (Source Address Validation, source address validation) technology, allowing you to listen on address allocation protocol for a user&#8217;s IP address, ensuring subsequent application to use the correct address on the Internet, and are not forged others &#8216; IP address, ensure the reliability of the source address. At the same time, through a combination of SAVI and Portal technology, to further ensure message authenticity and security of all Internet users.</p>
<p>First, the source address validation ensure the security of IPv6 network access</p>
<p>Comware platform for IPv6 source address spoofed the series on the network security issues, has made a series of solutions. DHCPv6 Snooping, IPv6 Source Guard characteristics and ND Snooping features establish an IPv6 address, MAC address and port bindings of the table, and based on bindings for the DHCPv6 protocol messages, ND protocol packet and IPv6 filter to check the legality of the data packet&#8217;s source address.</p>
<p>1. DHCPv6 Snooping</p>
<p>Security keywords: anti-counterfeiting server attacks, against address spoofing attacks against DAD attack</p>
<p>DHCPv6 Snooping features ensures that clients obtain an IPv6 address from a legitimate server, and records the DHCPv6 client IPv6 address and the MAC address of correspondence, thus preventing ND attack.</p>
<p>DHCPv6 by preventing fake server attacks as follows: to enable DHCPv6 DHCPv6 server to obtain the IPv6 address of the client through a legitimate, DHCPv6 Snooping security allows port is set to trusting port (Trusted Port) and distrust port (Untrusted Port): trusted port forwarding DHCPv6 message received correctly; not trust ports when the DHCPv6 server sends a reply message is received, discard the packet. Connection or other DHCPv6 DHCPv6 server, DHCPv6 Relay Snooping device ports need to be set up as a trust port, port is set to do not trust other port, so that DHCPv6 DHCPv6 server to obtain the address of the client can only be from a legitimate, erection of unauthorized pseudo DHCPv6 server cannot allocate addresses for DHCPv6 client.</p>
<p>DHCPv6 Snooping by listen for DHCPv6 messages, record DHCPv6 Snooping table, including the client&#8217;s MAC address, IPv6 address, and the DHCPv6 client connection gets to the port and that port is a member of VLAN information. And then by device access IPv6 Source Guard feature is enabled on the port side of the user, for the generated table, filter the message received in the corresponding ports on the control to prevent illegal messages through ports, so as to limit the illegal use of network resources, including address spoofing attacks, improve the security of the port.</p>
<p>For DAD attacks, have status assigned address, using DHCP snooping to generate trusted keys, an attacker cannot use DHCP to obtain the same address with the victim, the NA message of the exception cannot be filtered through the access layer switch, which effectively prevents the DAD attack. When no status is automatically assigned addresses, the user can use the random InterfaceID, normal user address allocation process, the device can establish a trusted key, and use the table filter the NA message to the attacker, so as to effectively prevent DAD attack.<br />
2. IPv6 Source Guard</p>
<p>Security key words: legitimacy of user checks</p>
<p>IPv6 Source Guard function is checked against the legality of user functions, is the source IPv6 address and the source MAC address in the message, check whether the user is a legitimate user of message received on the VLAN to which the port belongs, including check based on the IP Source Guard statically bound table, ND-based Snooping table checks and checks based on DHCPv6 Snooping security table entries. In the case of these three tables are present, check process is as follows:</p>
<p>IP Source Guard static binding l first table check. If you find the source IPv6 address and the source MAC address of a static binding table, the ND message is considered legitimate, forward. If you find the source IPv6 address of a static binding table but does not match the source MAC address, the ND message is considered illegal and discarded. If you do not find the corresponding source IPv6 address of a static binding table, continue the DHCPv6 Snooping safety check table, ND Snooping security table entries.</p>
<p>L check IP Source Guard statically bound table-based DHCPv6 based Snooping after security check table, ND Snooping security table entries, provided that they meet any one of the two, the ND message is considered legitimate, forward.</p>
<p>L if all checks no matching table is found, is considered to be illegal messages, direct drop.</p>
<p>3. ND Snooping</p>
<p>Security key words: prevent address spoofing attacks</p>
<p>ND Snooping features by listening during automatic address configuration for IPv6 &#8217;s DAD (Duplicate Address Detection, duplicate address detection) NS messages to establish a ND Snooping table, table content includes the source IPv6 address of the packet, which the source MAC address, VLAN, into the port information. When a VLAN-enabled ND after Snooping, all ports in that VLAN ND messages received will be redirected to the CPU. Ntdp ND after Snooping, CPU will analysis the ND message, get the source IPv6 address of the message, source, source VLAN and MAC address into port information, and according to the information to new or updated ND Snooping table. Updated table of the main under DAD NS messages, taking into account other types of ND messages, and additional confirmation of more active mechanisms: first, the device will detect existing the correctness of the entries received, detecting new messages (message a) authenticity. Final adoption of the key mechanisms of ageing, ND Snooping of guarantee expire table entries can be removed in a timely manner.</p>
<p>As with DHCPv6 Snooping, ND Snooping table can also be used with the IPv6 Source Guard function, by device access IPv6 Source Guard feature is enabled on the user side of the port, table generated for ND Snooping, filter the message received in the corresponding ports on the control to prevent address spoofing attacks, so as to limit the illegal use of network resources, improve the security of the port.</p>
<p>4. ND Detection and other preventive mechanisms</p>
<p>Security keywords: gateway for anti-phishing attacks, preventing DoS attacks</p>
<p>In DHCPv6 based on Snooping and ND Snooping, Comware ND Detection features, check the legality of the ND protocol messages for the user. For legitimate users of the ND message for normal forward or drop directly to prevent phishing attacks users, phishing gateways. ND Detection feature to access ports on the device is divided into two: a trust port, ND ND untrusted ports. For ND trust port, no legality user checking; ND untrusted ports, if RA and the RR message is received, it considered illegal messages directly drop, if you received other types of ND messages, a legitimacy check user is required to prevent phishing attacks users.</p>
<p>Against DoS attacks, Comware provides prevention mechanism. Attacker by constructing a changing NS/RS IP or MAC message for DoS attacks on three-layer device, ND table resource drain gateway. Comware gateway based on routing, can also be configured based on the physical port number ND learn, ND attacks limited to a smaller range, you can within the time limit fixed in the future of learning technologies such as number, extended DoS attack defensive ability.</p>
<p>Second, the expansion of WLAN technology</p>
<p>The above mechanism in broadband networks are powerful guarantee reliability of the IPv6 source address of the user. New groups for WLAN networks, Comware platform introduced new programmes (H3C patented technologies), address such issues as including equipment performance, client roaming, and effectively complete the IPv6 source address validation.</p>
<p>WLAN network includes two elements:</p>
<p>L AP (Access Point, access points), the wireless client to the LAN bridging, between the wireless clients and wireless LAN wireless to wired and wired to a wireless frame conversion.</p>
<p>L AC (Access Controller, a wireless controller), to control all of the AP and the wireless LAN management. Wireless controllers can also interact with the authentication server information, to provide authentication services for WLAN users.</p>
<p>Forward because there is a link-layer level control devices, if similar to the wired network, simple DHCPv6 Snooping or ND snooping, IP Source Guard again, you need to consider deployment at what level. If both are deployed on the AC, when the number of users very often resource-intensive, and easy performance degradation. If both are deployed on the AP, the AP should listen learn table and maintaining IP Source Guard table, and filter the data in this message, the performance will also have certain effects. In addition, problems still exist between different AP IP counterfeiting. For example, after a user used an IP on the AP and other AP phishing a user on the same IP, DHCPv6 Confirm sent messages (DHCP interactions are also legal process, to reconfirm the assigned address), the original AP and not knowing in a timely manner.<br />
Therefore in WLAN environment Xia, Comware used has new of source address validation model, through on WLAN original of MAC validation mechanism, and roaming mechanism for extended, in AC/AP schema Xia, in AP Shang used similar Yu DHCPv6 Snooping,ND Snooping of mechanism, generated based on user of IPv6 address related information, and used IPv6 Source Guard for IPv6 source address validation; in to AC synchronization user information table Shi, synchronization user of IPv6 information and corresponds of IPv6 address life period, related information, in user roaming Hou to new AP synchronization corresponds of information generated new of user information table; in AC Shang generated all with chain road user IPv6 address information total table, in each new user IPv6 address escalation to AC Shi for only sexual contrast, prevent same chain road within of IPv6 address forged.</p>
<p>Through this technology, extends the original user WLAN authentication technology, use of IPv6 addresses based on each user table to find IPv6 users, faster, and easier to maintain; and addresses the WLAN network, roaming situations exist that IPv6 source address validation to user problems.</p>
<p>Third, combined with Portal certification, ensure IPv6 access for manageability</p>
<p>Source address validation methods discussed earlier, solved the problem of users of forged messages. In this way, we can use the IPv6 address of the user to uniquely identify a user, will match it with the users one by one, you can also use the span of three-layer router identification, so as to facilitate the management of users &#8216; online behavior, including authentication, authorization, and accounting. Typical for identity authentication based on IP technology for Portal certification, also commonly known as a Web certification.</p>
<p>Deploying the Portal network, when not authenticated user on the Internet, device to force users to log on to a specific site, users can access the service for free. When other users need to use the Internet information, must be in the portal site for certification, certification after the IPv6 address of the device allows the user to use an Internet resource.</p>
<p>Comware Portal authentication functionality that is implemented by the platform, supports local Portal Server features, namely Portal authentication system without using external stand-alone Portal Server, Portal Server features by the access device implementation. In this case, Portal authentication system only include three basic elements: authentication client authentication/billing, access device, and server. Because the device supports direct Web user authentication, therefore does not require deployment of additional Portal Server enhances Portal authentication interoperability. Wireless application environment, can belong to different SSID (Service Set Identifier, service set ID) bind different authentication of the user page, so as to provide differentiated services.</p>
<p>Four, closing</p>
<p>IPv6 source address verification (SAVI), ensures each user on the network the release of the reliability of the source address, authentication ensures the IPv6 Portal user manageability, the Portal with the IPv6 source address validation effective combination, will guarantee the user ease of use and security of the Internet, IPv6 traffic and users unified management and network maintenance simplicity and ease of operation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/ipv6-user-wlan-security-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serious about IPv6</title>
		<link>http://www.ipv6.in/serious-about-ipv6/</link>
		<comments>http://www.ipv6.in/serious-about-ipv6/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 01:07:10 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[safe]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/?p=25</guid>
		<description><![CDATA[Everything has two sides, there is often also bear the advantage without disadvantage. Just like IPv6, it brings almost unlimited IP addresses to Inte[......]<p class='read-more'><a href='http://www.ipv6.in/serious-about-ipv6/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>Everything has two sides, there is often also bear the advantage without disadvantage. Just like IPv6, it brings almost unlimited IP addresses to Internet resources, while also changed the security environment of the Internet, allow more risks attendant to.</p>
<p>Currently gets some information network attacks, while the IPv4 to IPv6 transition has only just begun, but some attackers have started spreading spam IPv6 infrastructure, or even use of the address space of IPv6 to IPv4 network attack.</p>
<p>&#8220;Look beautiful&#8221; IPv6 if there is a greater security of the black hole? while in a warm and welcome the IPv6, we saw the hidden safety problems in the transition process? whether people experience accumulated in IPv4 environments the security also apply to IPv6?<br />
Three years ago, a on &#8220;Teredo technology included in Windows Vista system there is a potential security risk&#8221; message, had exposed the security problems faced by some of the IPv4 to IPv6 transition. Teredo is an address assignment and automatic tunneling technology that can transfer IPv6 traffic over an IPv4 network, helping clients implement compatibility for IPv4 and IPv6 protocols. At that time, have a security expert points out that Teredo client can pass to another IPv6 packet destination at the same time, bypass source routing control based on networks through the firewall and other security devices, and this feature is also enabled by default in the Vista system, the technology being formed as part of security vulnerabilities can easily be exploited by hackers. Since there was not any system to effectively filter all Teredo packet, experts can only suggest that the network administrator disable Teredo functionality and initiative and router, firewall, intrusion detection system vendors to increase support for Teredo protocol to ensure that conventional network security products that filter all Teredo packets.<br />
In fact, &#8220;Teredo&#8221; just brought by IPv6 security implications of a microcosm. Three years later, Teredo problem has not been fully resolved, a large number of similar transition technologies are beginning to be more widely used (such as 6to4, SIT mechanism of UDP and IPv6-based communication standards, such as the transition mode), and related products using these technologies also have IPv6 certification. This situation inevitably let reporters hanging on the current large number of IPv6 certification mark was concerned about the real effects of network security products.</p>
<p>Radware security products Director Ron Meyran told reporters, although many manufacturers have claimed to have IPv6 certification of security products, but the fact that many manufacturers only provide a special version is only able to support the ability to communicate with IPv6 network or rely on a License to run, does not mean that these products can effectively address the IPv6 security issues. Even when many security products in dealing with issues similar to the Teredo, either limited or completely invalid.</p>
<p>He said, even for some of the certified safety equipment, enterprises are carefully selected. Without understanding their operation mechanism, not blindly purchasing. For example, businesses still need to test the firewall can allow some unchecked IPv6 flow easily through, not be considered a non-IPv6 applications to intercept, check; IPv6 traffic can bypass multiple deep-packet engine hardware components, and so on. In addition, due to the length of the IPv6 address is IPv4 4 times will therefore significantly affect network security traffic processing speeds. This feature can also help us to determine the authenticity of IPv6 related security products support.</p>
<p>Attention to its inherent weaknesses</p>
<p>And IPv4 and IPv6 at the beginning of the design, it has made more consideration to security issues. With IPSec (Internet Protocol security), IPv6 security can indeed be improved. However, recent network attacks shows that IPSec cannot address all vulnerabilities of IPv6 network. Comparison of IPv4, new more complex network environment, the resulting network vulnerabilities are more difficult to predict. For example, attack who of IPv6 router can using false advertising, for network in the has enabled IPv6 of device automatically created new of IPv6 address; some transition mechanism makes IPv6 and IPv4 network Zhijian can mutual effect, instead for network attack who provides has more rich of can using of resources; transition tools can for various IPv4 application provides connection to IPv6 service of connection way, IPv6 application also can connection to IPv4 service, this status can let network attack became more crazy; IPv6 address of length also will became attack who with of strong tools, because based on IPv6 of flow filter will increased security device CPU of burden, attack who launched of DDoS attack by produced of flow, will than past easier led network device and server of paralysis.<br />
Moreover, although the internal IPv6 encryption mechanism is to provide communication between user and server authentication and security, but it did give the firewall and IPS are &#8220;down the snare&#8221;. It enabled the attackers to use cryptographic mechanisms to bypass firewall and IPS to check, launch an attack directly to the server, because are these security device is unable to detect encrypted content. Ron Meyran pointed out that the attacker can also take advantage of Teredo, 6to4, ISATAP IPv6 protocol mechanisms such as camouflage to attack. Attackers will allow packets through IPv4 traffic looks like normal there is no difference at all, only through firewalls and IPS accurately verified through technology of deep packet inspection (DPI) complete content inspection on IPv6 traffic. &#8220;At present, to support IPv6 and can really implement IPv6 IPS product of DPI and the few firewall products. If not deployed additional security devices or border security gateway, an attacker may exploit this negligence, using IPv6 packets into the core network. ”</p>
<p>In addition, the security risk exists in the IPv6 redirect Protocol is very worthy of attention. In the IPv6 protocol, redirection message&#8217;s primary role is to provide the correct routing nodes in LAN. Redirect IPv6 protocol itself&#8217;s main function is to ensure that the host has a dynamic routing table, small but excellent, to improve the efficiency of packet forwarding. However, because the IPv6 redirect Protocol lacks source address authentication, malicious node for LAN, you can use IPv6 redirect message to achieve illegal redirect datagram, an attack to achieve a variety of measures. For example, it first masquerade router, and then sending a Redir message tells the attacker: packets destined to a network node, follow your own routing this section better, then attacked the node forwards packets will be handed over to the malicious node, while the malicious node can not forward and to prohibit their traffic, or tampering.</p>
<p>Beware of &#8220;disobedient&#8221; IPv6</p>
<p>In the process of transition from IPV4 to IPV6, enterprises will face more to information security issues, and new understanding of information security system and adjustments.</p>
<p>First, in order to achieve seamless compatibility for IPv4 and IPv6, many IPv6 devices have built-in the stateless auto-configuration capabilities, and the network devices for network administrators looking for devices that have become uncontrollable. Administrators will be difficult to detect which network devices are out, and an attacker can exploit this situation from becoming victims. For example, an attacker can easily control a behavioural disorders network devices have it modified or reduce traffic, but they can not be found by your network administrator. IPv6 brings such risks, I am afraid that many network administrators are not expected.</p>
<p>Second, enterprises meet the IPv6 at the same time, IT also increases the difficulty of management. Sophos technology policy James Lyne told reporters that some enterprises for IPv6 traffic is not interested in, hope to establish clear rules to strictly prevent the IPv6 packet. And IT managers need to know &#8220;how to dialogue with the IPv6&#8243; to write the rules to deal with the agreement.</p>
<p>Meanwhile, James Lyne also pointed to some current issues. He believes that industry for built-in features of the IPv6 protocol on how to help users improve privacy protection problem of few, but a more focused look how fast to deploy IPv6, it makes a lot of insecure protocols, standards, technology is widely adopted by reckless, enterprises in an environment of such a transition is vulnerable to attack.</p>
<p>Relative to people accumulating on IPv4 security experience, experience in IPv6 security deficiencies of the industry. Progressively introduce IPv6 in the days, all network devices have to support two versions of network protocols, thus increasing the network of security risk is likely to result in huge losses. Prior to see IPv6, vigilance and passion of people apparently need to co-exist.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/serious-about-ipv6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ixia announces that provide technical support for IPV6 authentication based on Wi-Fi</title>
		<link>http://www.ipv6.in/ixia-announces-that-provide-technical-support-for-ipv6-authentication-based-on-wi-fi/</link>
		<comments>http://www.ipv6.in/ixia-announces-that-provide-technical-support-for-ipv6-authentication-based-on-wi-fi/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 01:04:07 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/?p=22</guid>
		<description><![CDATA[Ixia said today, its latest product line acquisition IxVeriWave now support IPv6 test based on Wi-Fi networks and access points. IxVeriWave WaveTest p[......]<p class='read-more'><a href='http://www.ipv6.in/ixia-announces-that-provide-technical-support-for-ipv6-authentication-based-on-wi-fi/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>
Ixia said today, its latest product line acquisition IxVeriWave now support IPv6 test based on Wi-Fi networks and access points. IxVeriWave WaveTest package of tested products is the first solution for next-generation WLAN infrastructure devices, allow wireless service providers, device manufacturers and enterprises to ensure that new products and network deployment are fully compatible with IPv6 and is backward compatible.</p>
<p>In recent years, mobile devices (for example, smart phones, iPad, iPod, Internet radio, DVR, game machines and all that) the prevalence of global depletion of the IPv4 address pool, limiting their development such as such as Asia&#8217;s major markets. Make up for the shortage of network addresses with IPv6 protocols, ABI Research estimates global mobile IPv6 support for broadband users will reach 1 billion by the end of this year. Only IxVeriWave WaveTest solutions allow service providers, device manufacturers and enterprise implementation of key performance and compatibility testing ensures that public and private infrastructure in order to successfully migrate to IPv6.</p>
<p>IPv6 package for Ixia test solutions with test plans and tools for service providers, device manufacturers and enterprises to fully evaluate each device, system, or end-to-end network for IPv6 readiness. IxVeriWave IPv6 test from Wi-Fi access points to the IP network core by providing comprehensive IPv6 testing enhance end-to-end IPv6 performance of Ixia. As for wireless infrastructure and equipment of the &#8220;gold standard&#8221; develop and deploy test solutions, WaveTest solutions to the new and improved features and detailed testing of the performance, and performance of the system at the same time dealing with both IPv6 and IPv4 clients for testing.</p>
<p>&#8220;Cisco is committed to providing support of IPv6 LAN, WAN and Wi-Fi Internet connection-oriented,&#8221; said Cisco Technical Marketing Director Jake Woodhams. &#8220;IxVeriWave IPv6 capabilities of Ixia is timely addition to WaveTest series. Our Wi-Fi solution compatible with IPv6 WaveTest system used in the development, QA and marketing, this allows us to maintain the leading position in the market at the same time to have a high speed of innovation. In addition, powerful tools like WaveTest for when we migrate to IPv6 to provide needed to work closely with our customers critical data. ”</p>
<p>&#8220;Ixia&#8217;s goal is to test for network equipment manufacturers, providers and users need to provide one-stop solution. Transition to IPv6 is a reality for us, and must be thoroughly verified end-to-end by a network, including Wi-Fi, &#8220;Ixia, President and CEO Atul Bhatnagar said. &#8220;Our acquisition of WaveTest recently and now it&#8217;s the new IPv6 capabilities, enables Ixia to achieve the vision, and to help network operators to their customers a seamless and efficient network and Internet services. ”</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/ixia-announces-that-provide-technical-support-for-ipv6-authentication-based-on-wi-fi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ARIN&#8217;s John Curran warns of IPv6 misconfigurations, but sees migration issues dwindling</title>
		<link>http://www.ipv6.in/arin-s-john-curran-warns-of-ipv6-misconfigurations-but-sees-migration-issues-dwindling/</link>
		<comments>http://www.ipv6.in/arin-s-john-curran-warns-of-ipv6-misconfigurations-but-sees-migration-issues-dwindling/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 22:40:00 +0000</pubDate>
		<dc:creator>Ipv6</dc:creator>
				<category><![CDATA[Ipv6 News]]></category>
		<category><![CDATA[ipv4]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.ipv6.in/arin-s-john-curran-warns-of-ipv6-misconfigurations-but-sees-migration-issues-dwindling/</guid>
		<description><![CDATA[John Curran, President of the American Registry Internet for Internet Numbers (ARIN), who once spent stints at XO Communications, is leading the Inter[......]<p class='read-more'><a href='http://www.ipv6.in/arin-s-john-curran-warns-of-ipv6-misconfigurations-but-sees-migration-issues-dwindling/'>more...</a></p>]]></description>
			<content:encoded><![CDATA[<p>John Curran, President of the American Registry Internet for Internet Numbers (ARIN), who once spent stints at XO Communications, is leading the Internet&#8217;s ongoing migration from IPv4 to IPv6. While World IPv6 Day in June went off with little, if any, impact on traditional users, Curran points out that the main issues will be found in users that have devices that aren&#8217;t configured correctly for IPv6, meaning that if you&#8217;re connected to v6 Internet, but you don&#8217;t actually have a connection to v6, you won&#8217;t be able to access certain websites.    <br />To counteract potential IPv6 connection issues, Curran argues that the goal of the IT and Internet industry should be to drive down the cases of people with misconfigured devices to access to IPv6 to a minimum.     <br />FierceTelecom&#8217;s Editor Sean Buckley recently caught up with Curran to talk about the ongoing migration to IPv6 and what it means to the everyday consumer and business user.     <br />FierceTelecom: We&#8217;re about a month out from World IPv6 Day. What were some of the lessons learned by ARIN and others during the event?    <br />&quot;What we&#8217;re really going to find is (that) people who have v6 turned on their PC, but aren&#8217;t actually connected to Internet with v6, are the ones that will experience problems.&quot;    <br />John Curran: Users who are configured to access websites and only have v4 turned on won&#8217;t see a change, and users who have had v4 and v6 turned on will suddenly access these websites via v6, but that&#8217;s also working fine since it&#8217;s been standardized now for a dozen years. What we&#8217;re really going to find is (that) people who have v6 turned on their PC, but aren&#8217;t actually connected to Internet with v6, are the ones that will experience problems.    <br />It&#8217;s not a protocol problem, but rather a misconfiguration problem. It won&#8217;t be a surprise if you turn on your machine and tell your machine you&#8217;re connected to v6 Internet, but you don&#8217;t actually have a connection to v6&#8211;it shouldn&#8217;t be a surprise to anyone you can&#8217;t access it. Those are the cases we&#8217;re really finding. It&#8217;s simply a matter of telling people: &#8216;we&#8217;d like you to turn on v6 as an access service and state that, but if not, just make sure however you connect to the Internet is how you configured your machine.&#8217;    <br />FT: One of the other growing concerns for service providers and customers centers on the broadband home gateway. Do you think there will be more activity around the home network by service providers implementing IPv6 in the home network?    <br />JC: There are a lot of folks, including Comcast which has a fairly large v6 broadband initiative, and I am sure their users who have v6 didn&#8217;t have a problem. It&#8217;s really a question of trying to make sure when a content company wants to turn on v6 to be ready for the future, that the number of users impacted is relatively low. You could have had IPv6 configured on your machine for years and not even know, so they want to make sure it isn&#8217;t the case anymore. The point is to drive those cases where people who have it misconfigured down to a very low number so it&#8217;s safe for content providers to use IPv6 every day.    <br />FT: Are there any actions consumer users need to take to ensure they are ready to take advantage of IPv6 as service providers roll it out in their last mile network and the devices they use on the home network will work appropriately?    <br />JC: This all has to do with your desktop. If you have gone in and turned on connection to IPv6 on your laptop when you actually don&#8217;t have an IPv6 connection to the Internet, it&#8217;s possible to your Web browser is going to be confused and try sending IPV6 packets. It&#8217;s a local configuration problem. ARIN, for example, has turned on IPv6. We&#8217;ll get a call that says our website is not accessible, but that&#8217;s because the user needs to get real IPv6 capability or turn it off. I don&#8217;t mind that because it&#8217;s only a call or two a month. You can&#8217;t safely turn on v6 if there&#8217;s a significant amount of people who have had it misconfigured and never knew it.    <br />FT: In making the ongoing transition from IPv4 to IPv6, security has been cited as another concern. Do you see any major issues regarding security?    <br />&quot;I had one CIO tell me he did not want to turn on V6 because he was worried about security. I said that&#8217;s the exact wrong answer.&quot;    <br />JC: Again, IPv6 is not that different than IPv4. We know the protocol works. You can run firewalls; you can run load balancers; and you can run your security infrastructure. It is true that organizations need to pay attention to IPv6 because it&#8217;s another item to be secured. I had one CIO tell me he did not want to turn on V6 because he was worried about security. I said that&#8217;s the exact wrong answer. IPv6 can be turned on and because of tunneling and Network Address Translation (NAT) someone could be using it on your network and you don&#8217;t even know it.&#160; The answer is not to ignore the situation, but rather to realize that there&#8217;s two network protocols in use&#8211;IPv4 and IPv6&#8211;and you have to plan for both on your security model.    <br />You have to realize that if you&#8217;re using a model that&#8217;s 10 years old it&#8217;s possible that someone is tunneling those packets straight through your firewall because you did not look at it. It&#8217;s not that there are not security issues, but they have to consciously look at v6 and turn on the same security configuration they have in place already for IPv4.    <br />FT: So really it&#8217;s all about applying similar precautions you&#8217;d apply today in an IPv4 environment?     <br />JC: Right. It&#8217;s possible your firewall may be set up to pass all IPv6 packets. Even if you have turned off the firewall to block IPv6 packets, that&#8217;s really probably not the right answer. Why? IPv6 can be tunneled in IPv4 and vice versa. What you want to do is look at the outside of the network and figure out how will I support IPv6 and IPv4 because if I just try to block it it&#8217;s possible someone will tunnel through that and run a translation like a NAT device. It&#8217;s not a question of &#8216;how I safely ignore this,&#8217; but rather doing the work and the configuration because it&#8217;s a matter of there&#8217;s going to be more and more v6 on your network and whether you&#8217;re paying attention to it or not.    <br />FT: In talking with Global Crossing, Anthony Christie thinks the migration for businesses will be based on specific triggers such as network upgrades or changing a service provider. Do you agree with that assessment?    <br />JC: Well, everyone sees it a bit differently. The major backbone providers that are busy providing services to business already have services in beta or are in production to do IPv6 transport. If you go to a large carrier and say &#8216;I have a GigE Internet connection and I want IPv4 and IPv6,&#8217; many will say &#8216;IPv6 is another way to address it and we&#8217;ll turn that on.&#8217; For them it&#8217;s not a big issue.    <br />&quot;You&#8217;ll find if you don&#8217;t support (IPv6), you&#8217;ll end up becoming that business that only supports fax but not e-mail.&quot;    <br />When you look at the business users, there are a lot of people realizing they should pay attention to it but they won&#8217;t deploy it until they see customer demand. The problem is the customer is all of those mobile devices out there. The problem is all of those parts of the Internet globally that have run out of IPv4 addresses and are going to start using IPv6. This isn&#8217;t a case of when you get a choice when you need it, but it&#8217;s a case of when are you going to do your preparation. This is in control in the Internet. You&#8217;ll find if you don&#8217;t support it, you&#8217;ll end up becoming that business that only supports fax but not e-mail.    <br />FT: Of course, as businesses make this transition, it appears that service providers are offering consulting IPv6 transition consulting. Do you see that as a big or just a niche opportunity?    <br />JC: I think there&#8217;s going to be demand for education, training and consulting for IPv6, but it&#8217;s not a huge market. If you think about what a typical IT staff needs to know today: They have to be experts in servers; they have to be experts in security, and they have to know how they all work and work together.    <br />IPv4 is just one set of identifiers. It&#8217;s like having a website written in English, whereas IPv6 is French. All of the concepts don&#8217;t change from IPv4 and IPv6. The IT staff already knows most of this. In fact at a lot of organizations putting something on the Internet means configuring it for IPv4 and IPv6. That&#8217;s the way it is a lot of companies. It&#8217;s not a separate expense of running around and doing something on IPv6. This is inherently part of the Internet and you should make it part of your IT process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ipv6.in/arin-s-john-curran-warns-of-ipv6-misconfigurations-but-sees-migration-issues-dwindling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

