Bug 57328

Summary: Missing IPv6 functionality in iptables
Product: [Retired] Red Hat Linux Reporter: Per Steinar Iversen <persteinar.iversen>
Component: iptablesAssignee: Bernhard Rosenkraenzer <bero>
Status: CLOSED CURRENTRELEASE QA Contact:
Severity: low Docs Contact:
Priority: medium    
Version: 7.2CC: pekkas
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2003-06-17 13:19:38 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Per Steinar Iversen 2001-12-10 15:30:08 UTC
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.6) Gecko/20011120

Description of problem:
Not all IPv6 extentions are compiled in.

Version-Release number of selected component (if applicable):


How reproducible:
Always

Steps to Reproduce:
1.Use certain options in iptables for IPv6
2.Does not work, the extentions are not installed byu default

	

Actual Results:  Gets errors about extentions missing, sample:
ip6tables v1.2.4: Couldn't load target `LOG'/lib/iptables/libip6t_LOG.so:
cannot open shared object file: No such file or directory


Expected Results:  Logging should work for IPv6 too.

Additional info:

A simple patch adds at least some of the missing IPv6 extentions:

--- iptables-1.2.4/extensions/Makefile.orig     Mon Dec 10 15:37:31 2001
+++ iptables-1.2.4/extensions/Makefile  Mon Dec 10 15:37:39 2001
@@ -1,7 +1,7 @@
 #! /usr/bin/make
 
 PF_EXT_SLIB:=tcp udp icmp mac limit standard REJECT LOG unclean state
multiport tos TOS mark MARK owner SNAT DNAT MASQUERADE REDIRECT MIRROR SAME
-PF6_EXT_SLIB:=tcp udp icmpv6 standard MARK mark
+PF6_EXT_SLIB:=tcp udp icmpv6 standard MARK mark agr limit LOG mac REJECT
 
 # The following may not be present, but compile them anyway.
 PF_EXT_SLIB+=FTOS TCPMSS TTL ULOG ah esp iplimit tcpmss ttl

Comment 1 Pekka Savola 2002-01-17 22:45:16 UTC
Note that kernel does not support agr or REJECT yet (the rest were added around 2.4.14 or so IIRC), 
enabling the rest would be niiice :-)