Linux - NetworkingThis forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I have installed Squid on Fedora 14 and using linux box as a Proxy Server.
But when I want to track the incoming and outgoing stuff, i need to put ip_conntrack support into fw.proxy file.
but when i run that file for generating iptables file it gives me below error.
-----------
[root@linux ~]# /etc/fw.proxy
/etc/fw.proxy: line 1: quid: command not found
FATAL: Module ip_conntrack not found.
[root@linux ~]#
-----------
My Fedora version is below.
[root@linux ~]# uname -a
Linux linux 2.6.35.14-106.fc14.i686 #1 SMP Wed Nov 23 13:57:33 UTC 2011 i686 i686 i386 GNU/Linux
Can anyone help with step by step guide to get rid of this error. I am searching this since last 2 weeks and got no help (may be i dont know how to compile it into kernel) but any other way around or step by step help is appreciated.
You should instruct that module to be loaded before trying to use it.
Check if your as /etc/sysconfig/iptables-config something as:
Code:
$ head /etc/sysconfig/iptables-config
# Load additional iptables modules (nat helpers)
# Default: -none-
# Space separated list of nat helpers (e.g. 'ip_nat_ftp ip_nat_irc'), which
# are loaded after the firewall rules are applied. Options for the helpers are
# stored in /etc/modprobe.conf.
IPTABLES_MODULES="ip_conntrack"
# Unload modules on restart and stop
# Value: yes|no, default: yes
# This option has to be 'yes' to get to a sane state for a firewall
The problem might also be related to lack of kernel support for conntrack option. This should be checked under Network packet filtering framework (Netfilter) > Core Netfilter Configuration > "conntrack" connection tracking match support
There are also more options within the kernel related to conntract and other features. What helped me (having the same message as you) was to recompile the kernel and set all possible netfilter option as modules <M>.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.