บล็อกจีนใช้ ipset
คุณไม่สามารถเพิ่มที่อยู่ IP หลายพันรายการใน iptables ของคุณได้ด้วยตนเองและการทำโดยอัตโนมัติเป็นความคิดที่ไม่ดีเพราะอาจทำให้โหลด CPU จำนวนมาก (หรืออย่างที่ฉันได้อ่าน) แต่เราสามารถใช้ ipset ที่ออกแบบมาสำหรับสิ่งนี้ ipset จัดการรายการใหญ่ของที่อยู่ IP; คุณเพิ่งสร้างรายการแล้วบอก iptables ให้ใช้รายการนั้นในกฎ
บันทึก; ฉันคิดว่าทั้งหมดต่อไปนี้เสร็จสิ้นเป็นราก ปรับให้เหมาะสมหากระบบของคุณใช้ sudo
apt-get install ipset
ต่อไปฉันเขียนสคริปต์ Bash ขนาดเล็กเพื่อทำงานทั้งหมดซึ่งคุณควรเข้าใจจากความคิดเห็นในนั้น สร้างไฟล์:
nano /etc/block-china.sh
นี่คือสิ่งที่คุณต้องการวางลงไป:
# Create the ipset list
ipset -N china hash:net
# remove any old list that might exist from previous runs of this script
rm cn.zone
# Pull the latest IP set for China
wget -P . http://www.ipdeny.com/ipblocks/data/countries/cn.zone
# Add each IP address from the downloaded list into the ipset 'china'
for i in $(cat /etc/cn.zone ); do ipset -A china $i; done
# Restore iptables
/sbin/iptables-restore < /etc/iptables.firewall.rules
บันทึกไฟล์ ทำให้ปฏิบัติการ:
chmod +x /etc/block-china.sh
สิ่งนี้ยังไม่ได้ทำอะไรเลย แต่จะใช้เวลาสักครู่เมื่อเราเรียกใช้สคริปต์ อันดับแรกเราต้องเพิ่มกฎลงใน iptables ที่อ้างถึงรายการ ipset ใหม่ที่สคริปต์ด้านบนกำหนด:
nano /etc/iptables.firewall.rules
เพิ่มบรรทัดต่อไปนี้:
-A INPUT -p tcp -m set --match-set china src -j DROP
บันทึกไฟล์ เพื่อความชัดเจน iptables.firewall.rules ตอนนี้ของฉันจะมีลักษณะดังนี้:
*filter
# Allow all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0
-A INPUT -i lo -j ACCEPT
-A INPUT -d 127.0.0.0/8 -j REJECT
# Accept all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Block anything from China
# These rules are pulled from ipset's china list
# The source file is at /etc/cn.zone (which in turn is generated by a shell script at /etc/block-china.sh )
-A INPUT -p tcp -m set --match-set china src -j DROP
# Allow all outbound traffic - you can modify this to only allow certain traffic
-A OUTPUT -j ACCEPT
# Allow HTTP and HTTPS connections from anywhere (the normal ports for websites and SSL).
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT
# Allow SSH connections
#
# The -dport number should be the same port number you set in sshd_config
#
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
# Allow ping
-A INPUT -p icmp -j ACCEPT
# Log iptables denied calls
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7
# Drop all other inbound - default deny unless explicitly allowed policy
-A INPUT -j DROP
-A FORWARD -j DROP
COMMIT
ตอนนี้ไม่มีอะไรเปลี่ยนแปลงกับเซิร์ฟเวอร์เนื่องจากไม่มีกฎใหม่ที่ใช้ หากต้องการทำเช่นนั้นให้เรียกใช้สคริปต์ block-china.sh:
/etc/block-china.sh
สิ่งนี้จะแสดงผลลัพธ์บางอย่างเมื่อดึงรายการ IP ที่อิงกับภาษาจีนใหม่หลังจากนั้นสองสามวินาทีหรือมากกว่านั้นก็จะเสร็จสมบูรณ์และส่งคุณกลับไปที่พร้อมท์คำสั่ง
หากต้องการทดสอบว่าใช้งานได้หรือไม่ให้เรียกใช้:
iptables -L
ตอนนี้คุณควรเห็นกฎใหม่ที่บล็อกจีน - ผลลัพธ์ควรมีลักษณะเช่นนี้:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere
REJECT all -- anywhere loopback/8 reject-with icmp-port-unreachable
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
DROP tcp -- anywhere anywhere match-set china src
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT tcp -- anywhere anywhere tcp dpt:https
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
ACCEPT icmp -- anywhere anywhere
LOG all -- anywhere anywhere limit: avg 5/min burst 5 LOG level debug prefix "iptables denied: "
DROP all -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
DROP all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere
เกือบเสร็จแล้ว! วิธีนี้ใช้ได้ผลและจะยังคงใช้งานได้กับบูทใหม่ แต่การเปลี่ยนแปลงที่อยู่ IP และรายการนั้นจะเพิ่มขึ้นเรื่อย ๆ เมื่อเวลาผ่านไป หากคุณต้องการดึงและใช้รายการ IP ที่อัปเดตคุณสามารถเรียกใช้สคริปต์ block-china.sh อีกครั้ง
นอกจากนี้เรายังสามารถตั้งค่าเครื่องให้ทำโดยอัตโนมัติผ่านงาน cron:
crontab -e
เพิ่มบรรทัดเช่นนี้:
* 5 * * * /etc/block-china.sh
สิ่งนี้จะรัน /etc/block-china.sh เวลา 5am ทุกวัน ผู้ใช้ที่เรียกใช้สคริปต์จะต้องเป็นรูทหรือมีสิทธิ์รูท
แหล่ง