시간대가 바뀌면 iptables가 iptables의 정보를 어떻게 계속 변경하는지 의심 스럽습니다. 나는 iptables를 사용하고있다. v 1.4.8
다음 IP 주소를 차단했습니다.
# date
Thu Jun 6 12:46:42 IST 2013
#iptables -A INPUT -s 10.0.3.128 -m time --datestart 2013-6-6T12:0:00 --datestop 2013-6-6T13:0:00 -j DROP
# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
DROP all -- 10.0.3.128 anywhere TIME starting from 2013-06-06 12:00:00 until date 2013-06-06 13:00:00
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
그러나 시간대를 변경 한 후 상황이 자동으로 발생했습니다.
시간대 변경 후 ++++++++++++++++++++++++++
#date
Thu Jun 6 15:17:48 HKT 2013
# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
DROP all -- 10.0.3.128 anywhere TIME starting from 2013-06-06 14:30:00 until date 2013-06-06 15:30:00
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
#
시간 값은 규칙에서 변경됩니다. 시간대와 함께 바뀌고 있습니다. iptables가 시간대를 추적하는 곳.
친절하게 설명해주세요.