我的 iptables 日志中有以下拒绝语句:
RULE 12 -- DENY IN=tun0 OUT=eth1 MAC= SRC=172.16.250.6 DST=192.168.0.11 LEN=84 TOS=0x00 PREC=0
x00 TTL=63 ID=0 DF PROTO=ICMP TYPE=8 CODE=0 ID=20001 SEQ=1
这是我的 iptables FORWARD 表
target prot opt source destination
all -- 172.16.250.0/24 192.168.0.11 /* Allows VPN IPs to connect to computer */
不确定为什么 iptables 阻止它....有什么想法吗?
一如往常,感谢大家!
答案1
我的 iptable 规则缺少 -j ACCEPT 参数。
添加
`-j ACCEPT`
解决了这个问题。
-吉姆