]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/initscripts/init.d/network
Fixed connection tracking bug (also in Core 27).
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / network
index 90f811384ce6e329ec9d3f5b4833bf92c6dd8d41..9c7e3ac11e2a67dd732ce432c4e9cc73d004c974 100644 (file)
@@ -19,10 +19,10 @@ eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
 init_networking() {
        boot_mesg "Loading firewall modules into the kernel"
        modprobe iptable_nat || failed=1
 init_networking() {
        boot_mesg "Loading firewall modules into the kernel"
        modprobe iptable_nat || failed=1
-       for i in $(find /lib/modules/$(uname -r) -name ip_conntrack*); do
+       for i in $(find /lib/modules/$(uname -r) -name nf_conntrack*); do
                modprobe $(basename $i | cut -d. -f1) || failed=1
        done
                modprobe $(basename $i | cut -d. -f1) || failed=1
        done
-       for i in $(find /lib/modules/$(uname -r) -name ip_nat*); do
+       for i in $(find /lib/modules/$(uname -r) -name nf_nat*); do
                modprobe $(basename $i | cut -d. -f1) || failed=1
        done
        (exit ${failed})
                modprobe $(basename $i | cut -d. -f1) || failed=1
        done
        (exit ${failed})