免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3071 | 回复: 6
打印 上一主题 下一主题

[系统安全] iptables无法过滤 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-10-23 17:17 |只看该作者 |倒序浏览
以下规则是openWrt(也是linux)默认规则,

配置大概是这样:这是一个宽带路由器(NAT设备),WAN网口使用DHCP获取ip,LAN口也作为DHCP服务器。配置了SNAT(MASQUERADE)。正常情况下,通过WAN口上行的数据的源ip被改成路由器WAN口ip,下行数据通过connect track自动把目的地址替换成内网IP。


那么,问题来了,(假设内网某主机ip是192.168.1.128,测试过程中这台主机不间断高速下载)
现象是:
1、通过SNAT上网正常
2、通过 iptables -I FORWARD -d 192.168.1.128 -j DROP  想达到禁止下载,不生效,电脑正常下载
3、针对2的现象作调试:通过iptables -L FORWARD -nv查看统计,发现filter表FORWARD链无明显的大流量通过
4、针对2的现象作调试, 通过iptables -t mangle -L FORWARD -nv查看统计,发现mangle表FORWARD有明显流量通过,目测接近下载速度。
5、通过 iptables -I FORWARD -s 192.168.1.128 -j DROP,生效,电脑不能下载(因为连接是双向的)



个人理解:根据iptables处理顺序,在FORWARD中,先执行mangle表、再执行filter表,除非mangle处理结果为DROP,否则数据将无条件经过filter


问:为什么下载时数据不经过FORWARD链的filter表?






以下是iptables 规则




  1. root@OpenWrt:~#iptables -L
  2. Chain INPUT (policy ACCEPT)
  3. target     prot opt source               destination         
  4. delegate_input  all  --  anywhere             anywhere            

  5. Chain FORWARD (policy DROP)
  6. target     prot opt source               destination         
  7. DROP       all  --  anywhere             PC201409180946.lan  
  8. p2pblock   udp  --  anywhere             anywhere             udp spts:1024:65535 dpts:1024:65535
  9. p2pblock   tcp  --  anywhere             anywhere             tcp spts:1024:65535 dpts:1024:65535
  10. delegate_forward  all  --  anywhere             anywhere            

  11. Chain OUTPUT (policy ACCEPT)
  12. target     prot opt source               destination         
  13. DROP       all  --  192.168.1.90         anywhere            
  14. delegate_output  all  --  anywhere             anywhere            

  15. Chain BCP38 (3 references)
  16. target     prot opt source               destination         
  17. RETURN     udp  --  anywhere             anywhere             udp spts:bootps:bootpc dpts:bootps:bootpc
  18. REJECT     all  --  anywhere             anywhere             match-set bcp38-ipv4 dst reject-with icmp-net-unreachable
  19. DROP       all  --  anywhere             anywhere             match-set bcp38-ipv4 src

  20. Chain MINIUPNPD (1 references)
  21. target     prot opt source               destination         
  22. ACCEPT     tcp  --  anywhere             192.168.1.22         tcp dpt:10946
  23. ACCEPT     udp  --  anywhere             192.168.1.22         udp dpt:10489
  24. ACCEPT     tcp  --  anywhere             PC201409180946.lan   tcp dpt:10946
  25. ACCEPT     udp  --  anywhere             PC201409180946.lan   udp dpt:10489

  26. Chain delegate_forward (1 references)
  27. target     prot opt source               destination         
  28. forwarding_rule  all  --  anywhere             anywhere             /* user chain for forwarding */
  29. ACCEPT     all  --  anywhere             anywhere             ctstate RELATED,ESTABLISHED
  30. ACCEPT     all  --  anywhere             192.168.1.22         /* ddrop */
  31. zone_lan_forward  all  --  anywhere             anywhere            
  32. zone_wan_forward  all  --  anywhere             anywhere            
  33. reject     all  --  anywhere             anywhere            

  34. Chain delegate_input (1 references)
  35. target     prot opt source               destination         
  36. ACCEPT     all  --  anywhere             anywhere            
  37. input_rule  all  --  anywhere             anywhere             /* user chain for input */
  38. ACCEPT     all  --  anywhere             anywhere             ctstate RELATED,ESTABLISHED
  39. syn_flood  tcp  --  anywhere             anywhere             tcp flags:FIN,SYN,RST,ACK/SYN
  40. zone_lan_input  all  --  anywhere             anywhere            
  41. zone_wan_input  all  --  anywhere             anywhere            

  42. Chain delegate_output (1 references)
  43. target     prot opt source               destination         
  44. ACCEPT     all  --  anywhere             anywhere            
  45. output_rule  all  --  anywhere             anywhere             /* user chain for output */
  46. ACCEPT     all  --  anywhere             anywhere             ctstate RELATED,ESTABLISHED
  47. zone_lan_output  all  --  anywhere             anywhere            
  48. zone_wan_output  all  --  anywhere             anywhere            

  49. Chain forwarding_lan_rule (1 references)
  50. target     prot opt source               destination         

  51. Chain forwarding_rule (1 references)
  52. target     prot opt source               destination         
  53. BCP38      all  --  anywhere             anywhere            

  54. Chain forwarding_wan_rule (1 references)
  55. target     prot opt source               destination         

  56. Chain input_lan_rule (1 references)
  57. target     prot opt source               destination         

  58. Chain input_rule (1 references)
  59. target     prot opt source               destination         
  60. BCP38      all  --  anywhere             anywhere            

  61. Chain input_wan_rule (1 references)
  62. target     prot opt source               destination         

  63. Chain luci_splash_filter (1 references)
  64. target     prot opt source               destination         
  65. REJECT     tcp  --  anywhere             anywhere             reject-with tcp-reset
  66. REJECT     all  --  anywhere             anywhere             reject-with icmp-net-prohibited

  67. Chain luci_splash_forwarding (0 references)
  68. target     prot opt source               destination         
  69. RETURN     all  --  anywhere             lvps176-28-11-93.dedicated.hosteurope.de
  70. luci_splash_filter  all  --  anywhere             anywhere            

  71. Chain output_lan_rule (1 references)
  72. target     prot opt source               destination         

  73. Chain output_rule (1 references)
  74. target     prot opt source               destination         
  75. BCP38      all  --  anywhere             anywhere            

  76. Chain output_wan_rule (1 references)
  77. target     prot opt source               destination         

  78. Chain p2pblock (2 references)
  79. target     prot opt source               destination         
  80. LOG        all  --  anywhere             anywhere             -m ipp2p  --apple  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-apple:"
  81.            all  --  anywhere             anywhere             -m ipp2p  --apple  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  82. LOG        all  --  anywhere             anywhere             -m ipp2p  --winmx  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-winmx:"
  83.            all  --  anywhere             anywhere             -m ipp2p  --winmx  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  84. LOG        all  --  anywhere             anywhere             -m ipp2p  --soul  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-soul:"
  85.            all  --  anywhere             anywhere             -m ipp2p  --soul  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  86. LOG        all  --  anywhere             anywhere             -m ipp2p  --ares  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-ares:"
  87.            all  --  anywhere             anywhere             -m ipp2p  --ares  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  88. LOG        all  --  anywhere             anywhere             -m ipp2p  --bit  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-bit:"
  89.            all  --  anywhere             anywhere             -m ipp2p  --bit  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  90. LOG        all  --  anywhere             anywhere             -m ipp2p  --gnu  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-gnu:"
  91.            all  --  anywhere             anywhere             -m ipp2p  --gnu  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  92. LOG        all  --  anywhere             anywhere             -m ipp2p  --kazaa  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-kazaa:"
  93.            all  --  anywhere             anywhere             -m ipp2p  --kazaa  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  94. LOG        all  --  anywhere             anywhere             -m ipp2p  --dc  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-dc:"
  95.            all  --  anywhere             anywhere             -m ipp2p  --dc  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  96. LOG        all  --  anywhere             anywhere             -m ipp2p  --edk  limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-seen-edk:"
  97.            all  --  anywhere             anywhere             -m ipp2p  --edk  recent: SET name: P2PBLOCK side: dest mask: 255.255.255.255
  98. LOG        all  --  anywhere             anywhere             recent: CHECK seconds: 60 hit_count: 3 name: P2PBLOCK side: dest mask: 255.255.255.255 limit: avg 1/min burst 5 LOG level warning prefix "P2PBLOCK-DROP:"
  99. DROP       all  --  anywhere             anywhere             recent: CHECK seconds: 60 hit_count: 3 name: P2PBLOCK side: dest mask: 255.255.255.255

  100. Chain reject (3 references)
  101. target     prot opt source               destination         
  102. REJECT     tcp  --  anywhere             anywhere             reject-with tcp-reset
  103. REJECT     all  --  anywhere             anywhere             reject-with icmp-port-unreachable

  104. Chain syn_flood (1 references)
  105. target     prot opt source               destination         
  106. RETURN     tcp  --  anywhere             anywhere             tcp flags:FIN,SYN,RST,ACK/SYN limit: avg 25/sec burst 50
  107. DROP       all  --  anywhere             anywhere            

  108. Chain zone_lan_dest_ACCEPT (2 references)
  109. target     prot opt source               destination         
  110. ACCEPT     all  --  anywhere             anywhere            

  111. Chain zone_lan_forward (1 references)
  112. target     prot opt source               destination         
  113. forwarding_lan_rule  all  --  anywhere             anywhere             /* user chain for forwarding */
  114. zone_wan_dest_ACCEPT  all  --  anywhere             anywhere             /* forwarding lan -> wan */
  115. ACCEPT     all  --  anywhere             anywhere             ctstate DNAT /* Accept port forwards */
  116. zone_lan_dest_ACCEPT  all  --  anywhere             anywhere            

  117. Chain zone_lan_input (1 references)
  118. target     prot opt source               destination         
  119. input_lan_rule  all  --  anywhere             anywhere             /* user chain for input */
  120. ACCEPT     all  --  anywhere             anywhere             ctstate DNAT /* Accept port redirections */
  121. zone_lan_src_ACCEPT  all  --  anywhere             anywhere            

  122. Chain zone_lan_output (1 references)
  123. target     prot opt source               destination         
  124. output_lan_rule  all  --  anywhere             anywhere             /* user chain for output */
  125. zone_lan_dest_ACCEPT  all  --  anywhere             anywhere            

  126. Chain zone_lan_src_ACCEPT (1 references)
  127. target     prot opt source               destination         
  128. ACCEPT     all  --  anywhere             anywhere            

  129. Chain zone_wan_dest_ACCEPT (2 references)
  130. target     prot opt source               destination         
  131. ACCEPT     all  --  anywhere             anywhere            

  132. Chain zone_wan_dest_REJECT (1 references)
  133. target     prot opt source               destination         
  134. reject     all  --  anywhere             anywhere            

  135. Chain zone_wan_forward (1 references)
  136. target     prot opt source               destination         
  137. MINIUPNPD  all  --  anywhere             anywhere            
  138. forwarding_wan_rule  all  --  anywhere             anywhere             /* user chain for forwarding */
  139. ACCEPT     all  --  anywhere             anywhere             ctstate DNAT /* Accept port forwards */
  140. zone_wan_dest_REJECT  all  --  anywhere             anywhere            

  141. Chain zone_wan_input (1 references)
  142. target     prot opt source               destination         
  143. input_wan_rule  all  --  anywhere             anywhere             /* user chain for input */
  144. ACCEPT     udp  --  anywhere             anywhere             udp dpt:bootpc /* Allow-DHCP-Renew */
  145. ACCEPT     icmp --  anywhere             anywhere             icmp echo-request /* Allow-Ping */
  146. ACCEPT     all  --  anywhere             anywhere             ctstate DNAT /* Accept port redirections */
  147. zone_wan_src_REJECT  all  --  anywhere             anywhere            

  148. Chain zone_wan_output (1 references)
  149. target     prot opt source               destination         
  150. output_wan_rule  all  --  anywhere             anywhere             /* user chain for output */
  151. zone_wan_dest_ACCEPT  all  --  anywhere             anywhere            

  152. Chain zone_wan_src_REJECT (1 references)
  153. target     prot opt source               destination         
  154. reject     all  --  anywhere             anywhere            
  155. root@OpenWrt:~#
  156. root@OpenWrt:~#
  157. root@OpenWrt:~#
  158. root@OpenWrt:~#
  159. root@OpenWrt:~#
  160. root@OpenWrt:~#
  161. root@OpenWrt:~#
  162. root@OpenWrt:~#
  163. root@OpenWrt:~#
  164. root@OpenWrt:~#
  165. root@OpenWrt:~#
  166. root@OpenWrt:~#
  167. root@OpenWrt:~#
  168. root@OpenWrt:~#
  169. root@OpenWrt:~#
  170. root@OpenWrt:~#
  171. root@OpenWrt:~#
  172. root@OpenWrt:~#
  173. root@OpenWrt:~#
  174. root@OpenWrt:~#
  175. root@OpenWrt:~#
  176. root@OpenWrt:~#
  177. root@OpenWrt:~#
  178. root@OpenWrt:~#
  179. root@OpenWrt:~#
  180. root@OpenWrt:~#
  181. root@OpenWrt:~#
  182. root@OpenWrt:~#iptables -t mangle -L
  183. Chain PREROUTING (policy ACCEPT)
  184. target     prot opt source               destination         
  185. luci_splash_mark_out  all  --  anywhere             anywhere            
  186. mwan3_hook  all  --  anywhere             anywhere            
  187. fwmark     all  --  anywhere             anywhere            

  188. Chain INPUT (policy ACCEPT)
  189. target     prot opt source               destination         

  190. Chain FORWARD (policy ACCEPT)
  191. target     prot opt source               destination         
  192. mssfix     all  --  anywhere             anywhere            

  193. Chain OUTPUT (policy ACCEPT)
  194. target     prot opt source               destination         
  195. mwan3_hook  all  --  anywhere             anywhere            
  196. mwan3_output_hook  all  --  anywhere             anywhere            

  197. Chain POSTROUTING (policy ACCEPT)
  198. target     prot opt source               destination         
  199. luci_splash_mark_in  all  --  anywhere             anywhere            

  200. Chain fwmark (1 references)
  201. target     prot opt source               destination         

  202. Chain luci_splash_mark_in (1 references)
  203. target     prot opt source               destination         

  204. Chain luci_splash_mark_out (1 references)
  205. target     prot opt source               destination         

  206. Chain mssfix (1 references)
  207. target     prot opt source               destination         
  208. TCPMSS     tcp  --  anywhere             anywhere             tcp flags:SYN,RST/SYN /* wan (mtu_fix) */ TCPMSS clamp to PMTU

  209. Chain mwan3_connected (2 references)
  210. target     prot opt source               destination         
  211. MARK       all  --  anywhere             127.0.0.0/8          MARK or 0xff00
  212. MARK       all  --  anywhere             base-address.mcast.net/3  MARK or 0xff00
  213. MARK       all  --  anywhere             10.20.12.0/24        MARK or 0xff00
  214. MARK       all  --  anywhere             192.168.1.0/24       MARK or 0xff00

  215. Chain mwan3_hook (2 references)
  216. target     prot opt source               destination         
  217. CONNMARK   all  --  anywhere             anywhere             CONNMARK restore mask 0xff00
  218. mwan3_ifaces  all  --  anywhere             anywhere             mark match 0x0/0xff00
  219. mwan3_connected  all  --  anywhere             anywhere             mark match 0x0/0xff00
  220. mwan3_rules  all  --  anywhere             anywhere             mark match 0x0/0xff00
  221. CONNMARK   all  --  anywhere             anywhere             CONNMARK save mask 0xff00
  222. mwan3_connected  all  --  anywhere             anywhere             mark match ! 0xff00/0xff00

  223. Chain mwan3_iface_wan (1 references)
  224. target     prot opt source               destination         
  225. MARK       all  --  10.20.12.0/24        anywhere             mark match 0x0/0xff00 /* default */ MARK or 0xff00
  226. MARK       all  --  anywhere             anywhere             mark match 0x0/0xff00 /* wan */ MARK xset 0x100/0xff00

  227. Chain mwan3_ifaces (1 references)
  228. target     prot opt source               destination         
  229. mwan3_iface_wan  all  --  anywhere             anywhere             mark match 0x0/0xff00

  230. Chain mwan3_output_hook (1 references)
  231. target     prot opt source               destination         
  232. mwan3_track_wan  icmp --  anywhere             anywhere             icmp echo-request length 32

  233. Chain mwan3_policy_balanced (1 references)
  234. target     prot opt source               destination         
  235. MARK       all  --  anywhere             anywhere             mark match 0x0/0xff00 /* wan 3 3 */ MARK xset 0x100/0xff00

  236. Chain mwan3_policy_wan2_only (0 references)
  237. target     prot opt source               destination         
  238. MARK       all  --  anywhere             anywhere             mark match 0x0/0xff00 /* unreachable */ MARK xset 0xfe00/0xff00

  239. Chain mwan3_policy_wan2_wan (1 references)
  240. target     prot opt source               destination         
  241. MARK       all  --  anywhere             anywhere             mark match 0x0/0xff00 /* wan 3 3 */ MARK xset 0x100/0xff00

  242. Chain mwan3_policy_wan_only (0 references)
  243. target     prot opt source               destination         
  244. MARK       all  --  anywhere             anywhere             mark match 0x0/0xff00 /* wan 3 3 */ MARK xset 0x100/0xff00

  245. Chain mwan3_policy_wan_wan2 (1 references)
  246. target     prot opt source               destination         
  247. MARK       all  --  anywhere             anywhere             mark match 0x0/0xff00 /* wan 3 3 */ MARK xset 0x100/0xff00

  248. Chain mwan3_rules (1 references)
  249. target     prot opt source               destination         
  250. mwan3_policy_wan_wan2  tcp  --  0.0.0.0/0.0.0.1      anywhere             multiport sports 0:65535 multiport dports https mark match 0x0/0xff00 /* sticky_even */
  251. mwan3_policy_wan2_wan  tcp  --  0.0.0.1/0.0.0.1      anywhere             multiport sports 0:65535 multiport dports https mark match 0x0/0xff00 /* sticky_odd */
  252. mwan3_policy_balanced  all  --  anywhere             anywhere             mark match 0x0/0xff00 /* default_rule */

  253. Chain mwan3_track_wan (1 references)
  254. target     prot opt source               destination         
  255. MARK       all  --  anywhere             resolver2.opendns.com  MARK or 0xff00
  256. MARK       all  --  anywhere             resolver1.opendns.com  MARK or 0xff00
  257. MARK       all  --  anywhere             google-public-dns-a.google.com  MARK or 0xff00
  258. MARK       all  --  anywhere             google-public-dns-b.google.com  MARK or 0xff00

  259. Chain qos_Default (0 references)
  260. target     prot opt source               destination         
  261. CONNMARK   all  --  anywhere             anywhere             CONNMARK restore mask 0xf
  262. qos_Default_ct  all  --  anywhere             anywhere             mark match 0x0/0xf
  263. MARK       udp  --  anywhere             anywhere             mark match 0x0/0xf0 length 0:500 MARK xset 0x22/0xff
  264. MARK       icmp --  anywhere             anywhere             MARK xset 0x11/0xff
  265. MARK       tcp  --  anywhere             anywhere             mark match 0x0/0xf0 tcp spts:1024:65535 dpts:1024:65535 MARK xset 0x44/0xff
  266. MARK       udp  --  anywhere             anywhere             mark match 0x0/0xf0 udp spts:1024:65535 dpts:1024:65535 MARK xset 0x44/0xff
  267. CONNMARK   all  --  anywhere             anywhere             CONNMARK save mask 0xf0

  268. Chain qos_Default_ct (1 references)
  269. target     prot opt source               destination         
  270. MARK       tcp  --  anywhere             anywhere             mark match 0x0/0xf tcp multiport ports ssh,domain /* ssh, dns */ MARK xset 0x11/0xff
  271. MARK       udp  --  anywhere             anywhere             mark match 0x0/0xf udp multiport ports ssh,domain /* ssh, dns */ MARK xset 0x11/0xff
  272. MARK       tcp  --  anywhere             anywhere             mark match 0x0/0xf tcp multiport ports ftp-data,ftp,smtp,www,pop3,https,imaps,pop3s /* ftp, smtp, http(s), imap */ MARK xset 0x33/0xff
  273. MARK       tcp  --  anywhere             anywhere             mark match 0x0/0xf tcp multiport ports 5190 /* AOL, iChat, ICQ */ MARK xset 0x22/0xff
  274. MARK       udp  --  anywhere             anywhere             mark match 0x0/0xf udp multiport ports 5190 /* AOL, iChat, ICQ */ MARK xset 0x22/0xff
  275. CONNMARK   all  --  anywhere             anywhere             CONNMARK save mask 0xff
  276. MARK       tcp  --  anywhere             anywhere             mark match 0x0/0xf tcp multiport ports ssh,domain /* ssh, dns */ MARK xset 0x11/0xff
  277. MARK       udp  --  anywhere             anywhere             mark match 0x0/0xf udp multiport ports ssh,domain /* ssh, dns */ MARK xset 0x11/0xff
  278. MARK       tcp  --  anywhere             anywhere             mark match 0x0/0xf tcp multiport ports ftp-data,ftp,smtp,www,pop3,https,imaps,pop3s /* ftp, smtp, http(s), imap */ MARK xset 0x33/0xff
  279. MARK       tcp  --  anywhere             anywhere             mark match 0x0/0xf tcp multiport ports 5190 /* AOL, iChat, ICQ */ MARK xset 0x22/0xff
  280. MARK       udp  --  anywhere             anywhere             mark match 0x0/0xf udp multiport ports 5190 /* AOL, iChat, ICQ */ MARK xset 0x22/0xff
  281. root@OpenWrt:~#
  282. root@OpenWrt:~#
  283. root@OpenWrt:~#
  284. root@OpenWrt:~#
  285. root@OpenWrt:~#
  286. root@OpenWrt:~#
  287. root@OpenWrt:~#
  288. root@OpenWrt:~#
  289. root@OpenWrt:~#
  290. root@OpenWrt:~#iptables -t nat -L
  291. Chain PREROUTING (policy ACCEPT)
  292. target     prot opt source               destination         
  293. DNAT       all  --  anywhere             10.20.12.13          to:192.168.1.22
  294. DNAT       tcp  --  anywhere             10.20.12.13          tcp dpt:8022 to:192.168.1.130:22
  295. delegate_prerouting  all  --  anywhere             anywhere            

  296. Chain INPUT (policy ACCEPT)
  297. target     prot opt source               destination         

  298. Chain OUTPUT (policy ACCEPT)
  299. target     prot opt source               destination         

  300. Chain POSTROUTING (policy ACCEPT)
  301. target     prot opt source               destination         
  302. delegate_postrouting  all  --  anywhere             anywhere            

  303. Chain MINIUPNPD (1 references)
  304. target     prot opt source               destination         
  305. DNAT       tcp  --  anywhere             anywhere             tcp dpt:10946 to:192.168.1.22:10946
  306. DNAT       udp  --  anywhere             anywhere             udp dpt:10946 to:192.168.1.22:10489
  307. DNAT       tcp  --  anywhere             anywhere             tcp dpt:17083 to:192.168.1.128:10946
  308. DNAT       udp  --  anywhere             anywhere             udp dpt:17083 to:192.168.1.128:10489

  309. Chain delegate_postrouting (1 references)
  310. target     prot opt source               destination         
  311. postrouting_rule  all  --  anywhere             anywhere             /* user chain for postrouting */
  312. zone_lan_postrouting  all  --  anywhere             anywhere            
  313. zone_wan_postrouting  all  --  anywhere             anywhere            

  314. Chain delegate_prerouting (1 references)
  315. target     prot opt source               destination         
  316. prerouting_rule  all  --  anywhere             anywhere             /* user chain for prerouting */
  317. zone_lan_prerouting  all  --  anywhere             anywhere            
  318. zone_wan_prerouting  all  --  anywhere             anywhere            

  319. Chain luci_splash_leases (1 references)
  320. target     prot opt source               destination         
  321. REDIRECT   udp  --  anywhere             anywhere             udp dpt:domain redir ports 53
  322. REDIRECT   tcp  --  anywhere             anywhere             tcp dpt:www redir ports 8082

  323. Chain luci_splash_prerouting (0 references)
  324. target     prot opt source               destination         
  325. RETURN     all  --  anywhere             lvps176-28-11-93.dedicated.hosteurope.de
  326. luci_splash_leases  all  --  anywhere             anywhere            

  327. Chain postrouting_lan_rule (1 references)
  328. target     prot opt source               destination         

  329. Chain postrouting_rule (1 references)
  330. target     prot opt source               destination         

  331. Chain postrouting_wan_rule (1 references)
  332. target     prot opt source               destination         

  333. Chain prerouting_lan_rule (1 references)
  334. target     prot opt source               destination         

  335. Chain prerouting_rule (1 references)
  336. target     prot opt source               destination         

  337. Chain prerouting_wan_rule (1 references)
  338. target     prot opt source               destination         

  339. Chain zone_lan_postrouting (1 references)
  340. target     prot opt source               destination         
  341. postrouting_lan_rule  all  --  anywhere             anywhere             /* user chain for postrouting */

  342. Chain zone_lan_prerouting (1 references)
  343. target     prot opt source               destination         
  344. prerouting_lan_rule  all  --  anywhere             anywhere             /* user chain for prerouting */

  345. Chain zone_wan_postrouting (1 references)
  346. target     prot opt source               destination         
  347. postrouting_wan_rule  all  --  anywhere             anywhere             /* user chain for postrouting */
  348. MASQUERADE  all  --  anywhere             anywhere            

  349. Chain zone_wan_prerouting (1 references)
  350. target     prot opt source               destination         
  351. MINIUPNPD  all  --  anywhere             anywhere            
  352. prerouting_wan_rule  all  --  anywhere             anywhere             /* user chain for prerouting */
  353. root@OpenWrt:~#
复制代码

论坛徽章:
0
2 [报告]
发表于 2014-10-23 20:52 |只看该作者
可能和那几条miniupnpd的规则有关

论坛徽章:
32
处女座
日期:2013-11-20 23:41:20双子座
日期:2014-06-11 17:20:43戌狗
日期:2014-06-16 11:05:00处女座
日期:2014-07-22 17:30:47狮子座
日期:2014-07-28 15:38:17金牛座
日期:2014-08-05 16:34:01亥猪
日期:2014-08-18 13:34:25白羊座
日期:2014-09-02 15:03:55金牛座
日期:2014-11-10 10:23:58处女座
日期:2014-12-02 09:17:52程序设计版块每日发帖之星
日期:2015-06-16 22:20:002015亚冠之塔什干火车头
日期:2015-06-20 23:28:22
3 [报告]
发表于 2014-10-24 13:43 |只看该作者
好复杂的iptables,看起来好费劲~{:3_201:}

论坛徽章:
0
4 [报告]
发表于 2014-10-24 16:25 |只看该作者
回复 2# pheyx


    谢谢你的回答!MINIUPNPD那些规则是我自己不知怎么配进去的,重启后没了,但上面的一样存在

论坛徽章:
0
5 [报告]
发表于 2014-10-24 16:30 |只看该作者
回复 3# yestreenstars


    可以这么看:其实就是3个表:filter(默认)、mangle、nat,我以大量换行分开了,然后是5个基本链,PREROUTING、INPUT、FORWARD、OUTPUT、POSTROUTING,后面乱七八糟的是自定义链,自定义链通过上面5条基本链跳转过去,比如说:INPUT的某条规则的target是MINIUPNPD,那么就跳到MINIUPNPD链执行规则,像函数调用一样

论坛徽章:
0
6 [报告]
发表于 2014-10-27 18:35 |只看该作者
回复 3# yestreenstars


    问题已解决,如果有兴趣可以看我的博客。



http://blog.chinaunix.net/uid-29690780-id-4578554.html

论坛徽章:
32
处女座
日期:2013-11-20 23:41:20双子座
日期:2014-06-11 17:20:43戌狗
日期:2014-06-16 11:05:00处女座
日期:2014-07-22 17:30:47狮子座
日期:2014-07-28 15:38:17金牛座
日期:2014-08-05 16:34:01亥猪
日期:2014-08-18 13:34:25白羊座
日期:2014-09-02 15:03:55金牛座
日期:2014-11-10 10:23:58处女座
日期:2014-12-02 09:17:52程序设计版块每日发帖之星
日期:2015-06-16 22:20:002015亚冠之塔什干火车头
日期:2015-06-20 23:28:22
7 [报告]
发表于 2014-10-28 08:59 |只看该作者
回复 6# 阿鸾44

好的~{:3_193:}
   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP