Adding multiple iptables_MODULES

I have a RHEL 5.8 server and I am trying to implement a writable FTP server. I need to add the following module as below,

IPTABLES_MODULES=�nf_conntrack_ftp         nf_nat_ftp�

But there is already a module like this,

IPTABLES_MODULES=�ip_conntrack_netbios_ns�

My query is how to add 2 IPTABLES_MODULES.

I hope, my question is clear.

Please revert with the reply to my query.

Regards

IPTABLES_MODULES in /etc/sysconfig/iptables-config should be updated to include a space-separated list of modules to load - so in your case:

IPTABLES_MODULES=�ip_conntrack_netbios_ns nf_conntrack_ftp nf_nat_ftp�

Should do the job.

1 Like