Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 159747 Details for
Bug 191331
netfilter and iptables module missmatch
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Identify 'missing' kernel modules.
ipt_lmodules.sh (text/plain), 797 bytes, created by
DaveG
on 2007-07-22 15:47:12 UTC
(
hide
)
Description:
Identify 'missing' kernel modules.
Filename:
MIME Type:
Creator:
DaveG
Created:
2007-07-22 15:47:12 UTC
Size:
797 bytes
patch
obsolete
>#!/bin/bash ># ># ipt_lmodules.sh ># ># Identify the kernel netfilter module(s) for each iptables library module ># and check the file exists. ># ># Missing modules imply: ># iptables commands and restores containing references to missing modules ># will trigger an error from the kernel but not from iptables. ># ># Requires kernel, iptables, iptables-ipv6 ># ># Hacked together by: David Greenhouse <daveg at dgit dot ndo dot co dot uk> ># 2007-07-21 > >echo "The following iptables library modules have no corresponding kernel netfilter module:" >for libipt in /lib/iptables/libip*t_*.so; do > mod=`basename ${libipt} .so` > module=${mod#lib} > # Exceptions > case ${module} in > ipt_SNAT|ipt_DNAT|ipt_icmp|ip6t_icmp6|ipt_standard|ip6t_standard) > # Built-in > continue > ;; > esac > /sbin/modprobe -n ${module} >done >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 191331
:
139054
|
159745
|
159746
| 159747