


 



<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://docwiki.cisco.com/w/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://docwiki.cisco.com/w/index.php?title=IOS-FW_-_Block_IPv6_Extension_Headers&amp;feed=atom&amp;action=history</id>
		<title>IOS-FW - Block IPv6 Extension Headers - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://docwiki.cisco.com/w/index.php?title=IOS-FW_-_Block_IPv6_Extension_Headers&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=IOS-FW_-_Block_IPv6_Extension_Headers&amp;action=history"/>
		<updated>2013-05-20T03:22:25Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.16.0</generator>

	<entry>
		<id>http://docwiki.cisco.com/w/index.php?title=IOS-FW_-_Block_IPv6_Extension_Headers&amp;diff=41305&amp;oldid=prev</id>
		<title>Pzimmerm: Added metadata template</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=IOS-FW_-_Block_IPv6_Extension_Headers&amp;diff=41305&amp;oldid=prev"/>
				<updated>2011-06-14T23:41:40Z</updated>
		
		<summary type="html">&lt;p&gt;Added metadata template&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 23:41, 14 June 2011&lt;/td&gt;
		&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;{{Template:Required Metadata}}&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;{{Template:Required Metadata}}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;{{Template:Metadata IPv6 Config Example}}&lt;/ins&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==Introduction==&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;==Introduction==&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Pzimmerm</name></author>	</entry>

	<entry>
		<id>http://docwiki.cisco.com/w/index.php?title=IOS-FW_-_Block_IPv6_Extension_Headers&amp;diff=35286&amp;oldid=prev</id>
		<title>Scavanau: adding more details</title>
		<link rel="alternate" type="text/html" href="http://docwiki.cisco.com/w/index.php?title=IOS-FW_-_Block_IPv6_Extension_Headers&amp;diff=35286&amp;oldid=prev"/>
				<updated>2010-11-03T17:01:10Z</updated>
		
		<summary type="html">&lt;p&gt;adding more details&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Template:Required Metadata}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
IPv6 packets have the ability to use extension headers, these will be placed between the IPv6 portion and the next header (ex. ICMP).  The following example is blocking the extension header 43 (dest-op), notice that there is three commands in the access-list ''block4'' (the only one being used in this configuration) You can tell it is the only being used by looking at ''g0/1'' and seeing the command ''ipv6 traffic-filter block4 in''&lt;br /&gt;
&amp;lt;pre&amp;gt;deny 60 any any&lt;br /&gt;
sequence 30 deny ipv6 any any dest-option&lt;br /&gt;
permit ipv6 any any&amp;lt;/pre&amp;gt;&lt;br /&gt;
The first command actually does nothing at this time to block this type of header (look at version, may change), the 2nd command blocks the dest-option extension headers that I am sending with the Spirent TestCenter and the third command is allowing all other ipv6 traffic because just like IPv4 access-list there is an implicit deny after the final statement in an access-list.&lt;br /&gt;
&lt;br /&gt;
==Design==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Describe any setup details of this configuration and include a topology--&amp;gt;&lt;br /&gt;
The switch is just used so I can test other devices besides the 3845 by switching vlans around.&lt;br /&gt;
&lt;br /&gt;
[[Image:3845-setup.jpg]]&lt;br /&gt;
 &lt;br /&gt;
==Version Information==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Provide any steps, tips, or suggestions to setting up this configuration successfully--&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;barbrady#sh ver&lt;br /&gt;
Cisco IOS Software, 3800 Software (C3845-ADVENTERPRISEK9-M), Version 15.1(2)T1, RELEASE SOFTWARE (fc1)&lt;br /&gt;
Technical Support: http://www.cisco.com/techsupport&lt;br /&gt;
Copyright (c) 1986-2010 by Cisco Systems, Inc.&lt;br /&gt;
Compiled Wed 11-Aug-10 15:10 by prod_rel_team&lt;br /&gt;
&lt;br /&gt;
ROM: System Bootstrap, Version 12.4(13r)T11, RELEASE SOFTWARE (fc1)&lt;br /&gt;
&lt;br /&gt;
barbrady uptime is 6 minutes&lt;br /&gt;
System returned to ROM by power-on&lt;br /&gt;
System image file is &amp;quot;flash:c3845-adventerprisek9-mz.151-2.T1.bin&amp;quot;&lt;br /&gt;
Last reload type: Normal Reload&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This product contains cryptographic features and is subject to United&lt;br /&gt;
States and local country laws governing import, export, transfer and&lt;br /&gt;
use. Delivery of Cisco cryptographic products does not imply&lt;br /&gt;
third-party authority to import, export, distribute or use encryption.&lt;br /&gt;
Importers, exporters, distributors and users are responsible for&lt;br /&gt;
compliance with U.S. and local country laws. By using this product you&lt;br /&gt;
agree to comply with applicable laws and regulations. If you are unable&lt;br /&gt;
to comply with U.S. and local laws, return this product immediately.&lt;br /&gt;
&lt;br /&gt;
A summary of U.S. laws governing Cisco cryptographic products may be found at:&lt;br /&gt;
http://www.cisco.com/wwl/export/crypto/tool/stqrg.html&lt;br /&gt;
&lt;br /&gt;
If you require further assistance please contact us by sending email to&lt;br /&gt;
export@cisco.com.&lt;br /&gt;
&lt;br /&gt;
Cisco 3845 (revision 1.0) with 482304K/41984K bytes of memory.&lt;br /&gt;
Processor board ID FTX1405AJSE&lt;br /&gt;
2 Gigabit Ethernet interfaces&lt;br /&gt;
1 terminal line&lt;br /&gt;
2 Virtual Private Network (VPN) Modules&lt;br /&gt;
1 cisco ips sensor(s), ips monitoring on slot 1&lt;br /&gt;
DRAM configuration is 64 bits wide with parity enabled.&lt;br /&gt;
479K bytes of NVRAM.&lt;br /&gt;
500472K bytes of ATA System CompactFlash (Read/Write)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
License Info:&lt;br /&gt;
&lt;br /&gt;
License UDI:&lt;br /&gt;
&lt;br /&gt;
-------------------------------------------------&lt;br /&gt;
Device#   PID                   SN&lt;br /&gt;
-------------------------------------------------&lt;br /&gt;
*0        CISCO3845-MB          FOC14023AUF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Configuration register is 0x2102&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Related show Commands==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
show ipv6 int br&lt;br /&gt;
sh ipv6 neighbors&lt;br /&gt;
sh ipv6 access-list&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Certain show commands are supported by the [https://www.cisco.com/cgi-bin/Support/OutputInterpreter/home.pl Output Interpreter Tool (registered customers only)], which allows you to view an analysis of show command output.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Add steps to verify that the config is working, including which show commands to use--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Show running-config==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;barbrady#sh run&lt;br /&gt;
Building configuration...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Current configuration : 1694 bytes&lt;br /&gt;
!&lt;br /&gt;
! Last configuration change at 17:43:30 UTC Thu Aug 12 2010&lt;br /&gt;
!&lt;br /&gt;
version 15.0&lt;br /&gt;
service timestamps debug datetime msec&lt;br /&gt;
service timestamps log datetime msec&lt;br /&gt;
no service password-encryption&lt;br /&gt;
!&lt;br /&gt;
hostname barbrady&lt;br /&gt;
!&lt;br /&gt;
boot-start-marker&lt;br /&gt;
boot-end-marker&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
no aaa new-model&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
dot11 syslog&lt;br /&gt;
ip source-route&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
ip cef&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
ipv6 unicast-routing&lt;br /&gt;
ipv6 cef&lt;br /&gt;
!&lt;br /&gt;
multilink bundle-name authenticated&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
voice-card 0&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
license udi pid CISCO3845-MB sn FOC14023AUF&lt;br /&gt;
!&lt;br /&gt;
redundancy&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
interface GigabitEthernet0/0&lt;br /&gt;
 no ip address&lt;br /&gt;
 duplex auto&lt;br /&gt;
 speed auto&lt;br /&gt;
 media-type rj45&lt;br /&gt;
 ipv6 address 2000::1/64&lt;br /&gt;
 !&lt;br /&gt;
!&lt;br /&gt;
interface GigabitEthernet0/1&lt;br /&gt;
 no ip address&lt;br /&gt;
 duplex full&lt;br /&gt;
 speed 1000&lt;br /&gt;
 media-type rj45&lt;br /&gt;
 ipv6 address 3000::1/64&lt;br /&gt;
 ipv6 enable&lt;br /&gt;
 ipv6 traffic-filter block4 in&lt;br /&gt;
 !&lt;br /&gt;
!&lt;br /&gt;
interface IDS-Sensor0/1&lt;br /&gt;
 no ip address&lt;br /&gt;
 shutdown&lt;br /&gt;
 service-module fail-open&lt;br /&gt;
 !&lt;br /&gt;
 hold-queue 60 out&lt;br /&gt;
!&lt;br /&gt;
ip forward-protocol nd&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
ip http server&lt;br /&gt;
no ip http secure-server&lt;br /&gt;
ip route 0.0.0.0 0.0.0.0 172.18.153.1&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
ipv6 access-list block&lt;br /&gt;
 deny 0 any any log&lt;br /&gt;
 sequence 60 permit ipv6 any any&lt;br /&gt;
!&lt;br /&gt;
ipv6 access-list block2&lt;br /&gt;
 deny 43 any any&lt;br /&gt;
 sequence 30 deny 43 any any mobility&lt;br /&gt;
 sequence 50 deny ipv6 any any routing-type 2&lt;br /&gt;
 permit ipv6 any any&lt;br /&gt;
!&lt;br /&gt;
ipv6 access-list block3&lt;br /&gt;
 sequence 60 deny 59 any any&lt;br /&gt;
 permit ipv6 any any&lt;br /&gt;
!&lt;br /&gt;
ipv6 access-list block4&lt;br /&gt;
 deny 60 any any&lt;br /&gt;
 sequence 30 deny ipv6 any any dest-option&lt;br /&gt;
 permit ipv6 any any&lt;br /&gt;
!&lt;br /&gt;
control-plane&lt;br /&gt;
 !&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
line con 0&lt;br /&gt;
line aux 0&lt;br /&gt;
line 386&lt;br /&gt;
 no activation-character&lt;br /&gt;
 no exec&lt;br /&gt;
 transport preferred none&lt;br /&gt;
 transport input all&lt;br /&gt;
 transport output pad telnet rlogin lapb-ta mop udptn v120 ssh&lt;br /&gt;
 stopbits 1&lt;br /&gt;
 speed 115200&lt;br /&gt;
line vty 0 4&lt;br /&gt;
 login&lt;br /&gt;
!&lt;br /&gt;
scheduler allocate 20000 1000&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
barbrady#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Related Information==&lt;br /&gt;
[http://www.cisco.com/en/US/products/sw/secursw/ps1018/tsd_products_support_configure.html IOS-FW - Configuration Examples - Cisco Systems]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--List links to related information--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Add appropriate categories--&amp;gt;&lt;br /&gt;
[[Category:IPv6 Configuration Examples]]&lt;/div&gt;</summary>
		<author><name>Scavanau</name></author>	</entry>

	</feed>