From 567ff36820f27eef7848154db55733aa57d6d29d Mon Sep 17 00:00:00 2001 From: Zesen Qian Date: Fri, 13 Jan 2017 15:52:53 +0800 Subject: [PATCH] update china.awk --- china.awk | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/china.awk b/china.awk index e76aebf..48141e5 100755 --- a/china.awk +++ b/china.awk @@ -2,8 +2,6 @@ # This script expects to read from # ftp://ftp.ripe.net/pub/stats/apnic/delegated-apnic-latest - - BEGIN { FS="|"; } @@ -16,12 +14,12 @@ $2 == "CN" && $3 == "ipv4" { print $4 "/" prefix } END { - # Please fill you VPS's IPv4 here - # and uncomment the line bellow - - # print 23.89.123.42 print "0.0.0.0/8" print "10.0.0.0/8" print "127.0.0.0/8" + print "169.254.0.0/16" + print "172.16.0.0/12" print "192.168.0.0/16" + print "224.0.0.0/4" + print "240.0.0.0/4" }