我在命令行中执行以下操作:
modprobe ipt_LOG
modprobe ipt_multiport
modprobe ipt_state
modprobe ipt_limit
modprobe ipt_recent
modprobe ipt_owner
modprobe iptable_nat
modprobe tun/tap
modprobe iptable_nat
modprobe ipt_MASQUERADE
modprobe ipt_POSTROUTING
如何让内核在重启时使用并备份这些模块?
答案1
跟着文档:
# cat >/etc/rc.modules << EOF
modprobe ipt_LOG
modprobe ipt_multiport
modprobe ipt_state
modprobe ipt_limit
modprobe ipt_recent
modprobe ipt_owner
modprobe iptable_nat
modprobe tun/tap
modprobe iptable_nat
modprobe ipt_MASQUERADE
modprobe ipt_POSTROUTING
EOF
# chmod +x /etc/rc.modules