- 论坛徽章:
- 0
|
请教iptables如何只让给定的ip和mac上网?
命令?
恩...
基本上可以按楼上这位大哥的方法是设置,但是楼上这位大哥直接使用的话,可能module还没载进内核...
先要
modprobe ipt_mac
modprobe ipt_state
然后按楼上那位大哥的做就行了...
我记得我写过一个小东东,检查iptmac的,因为一般默认没编译进内核,所以可以用来检查系统中是否有该模块,和载进内核...
- #!/bin/sh
- KVERSION=`uname -r`
- lsmod | grep -q "ipt_mac"
- if [ $? = "0" ];then
- echo "there exist ipt_mod in the kernel,U have insert it to the kernel"
- else
- echo "there isn't a ipt_mod in the kernel"
- echo "-----=====looking for the ipt_mac kernel=====-----"
- cd /lib/modules/$KVERSION
- cat modules.dep | grep -q "ipt_mac"
- if [ $? = "0" ];then
- echo "ok ,got it..."
- modprobe ipt_mac
- if [ $? = "0" ];then
- echo "-----=====Load ipt_mac modules success=====-----"
- else
- echo "-----=====Load ipt_mac modules failed=====-----"
- fi
- else
- echo "there isn't ipt_mac modules.Please compile the kernel and make the ipt_mac in the kernel or make it module"
- fi
- fi
复制代码 |
|