From 670cb8cb3e8dea61534d6fcf054f3eb8cfc9d4f1 Mon Sep 17 00:00:00 2001 From: ppabc Date: Tue, 24 Apr 2018 18:31:36 +0800 Subject: [PATCH] update --- docker/docker_tuna.sh | 31 + mysql/mariadb.sh | 326 +++-- mysql/mariadb_auto_install.sh | 97 ++ shell/recover_mem.sh | 38 + shell/route_cnc_linux_V20110818.sh | 2159 ++++++++++++++++++++++++++++ 5 files changed, 2560 insertions(+), 91 deletions(-) create mode 100644 docker/docker_tuna.sh create mode 100644 mysql/mariadb_auto_install.sh create mode 100644 shell/recover_mem.sh create mode 100644 shell/route_cnc_linux_V20110818.sh diff --git a/docker/docker_tuna.sh b/docker/docker_tuna.sh new file mode 100644 index 0000000..96d2727 --- /dev/null +++ b/docker/docker_tuna.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# https://yq.aliyun.com/articles/110806 +# step 1: 安装必要的一些系统工具 +sudo yum install -y yum-utils device-mapper-persistent-data lvm2 +# Step 2: 添加软件源信息 +sudo yum-config-manager --add-repo https://selinux.cn/docker-ce.repo +# Step 3: 更新并安装 Docker-CE +sudo yum makecache fast +sudo yum -y install docker-ce +# Step 4: 开启Docker服务 +sudo service docker start + +# 注意: +# 官方软件源默认启用了最新的软件,您可以通过编辑软件源的方式获取各个版本的软件包。例如官方并没有将测试版本的软件源置为可用,你可以通过以下方式开启。同理可以开启各种测试版本等。 +# vim /etc/yum.repos.d/docker-ce.repo +# 将 [docker-ce-test] 下方的 enabled=0 修改为 enabled=1 +# +# 安装指定版本的Docker-CE: +# Step 1: 查找Docker-CE的版本: +# yum list docker-ce.x86_64 --showduplicates | sort -r +# Loading mirror speeds from cached hostfile +# Loaded plugins: branch, fastestmirror, langpacks +# docker-ce.x86_64 17.03.1.ce-1.el7.centos docker-ce-stable +# docker-ce.x86_64 17.03.1.ce-1.el7.centos @docker-ce-stable +# docker-ce.x86_64 17.03.0.ce-1.el7.centos docker-ce-stable +# Available Packages +# Step2 : 安装指定版本的Docker-CE: (VERSION 例如上面的 17.03.0.ce.1-1.el7.centos) +# sudo yum -y install docker-ce-[VERSION] + +#安装校验 +docker version \ No newline at end of file diff --git a/mysql/mariadb.sh b/mysql/mariadb.sh index c58936b..9ce4d09 100644 --- a/mysql/mariadb.sh +++ b/mysql/mariadb.sh @@ -1,97 +1,241 @@ +###### 二进制自动安装数据库脚本root密码MANAGER将脚本和安装包放在/root目录即可############### +######数据库目录/usr/local/mysql############ +######数据目录/data/mysql############ +######日志目录/log/mysql############ +######端口号默认3306其余参数按需自行修改############ +################## +##转载 http://blog.51cto.com/suifu/1830575 +#author:rrhelei@126.com# +################## #!/bin/bash -# -### -# Filename: install_mariadb.sh -# Author: roguo.wei - roguo.wei@gmail.com -# Description: -# Last Modified: 2017-01-17 00:31 -# Version: 1.0 -### - -INSTALL_DIR="/opt/app" -DATA_DIR="/opt/data" -MARIADB_GROUP="mysql" -MARIADB_USER="mysql" -MARIADB_VERSION="10.1.20" -ROOT_PASSWD="root" -#mariadb-10.1.20-linux-x86_64.tar.gz -TAR_NAME="mariadb-${MARIADB_VERSION}-linux-x86_64.tar.gz" -UNTAR_NAME="mariadb-${MARIADB_VERSION}-linux-x86_64" - -# check mariadb user -echo -n "check MariaDB user... " -id -u ${MARIADB_USER} &> /dev/null -if [ $? -ne 0 ];then - groupadd ${MARIADB_GROUP} - useradd -g ${MARIADB_GROUP} ${MARIADB_USER} +PATH=/bin:/sbin:/usr/bin:/usr/sbin:/opt/bin:/opt/sbin:~/bin +export PATH +# Check if user is root +if [ $(id -u) != "0" ]; then + echo "Error: You must be root to run this script, please use root to install" + exit 1 fi -echo "ok" - -# check install dir -[ ! -d "${INSTALL_DIR}" ] && mkdir -p ${INSTALL_DIR} -[ ! -d "${DATA_DIR}" ] && mkdir -p ${DATA_DIR} - -# check mariadb file -if [ ! -f ${TAR_NAME} ];then - wget http://mirrors.tuna.tsinghua.edu.cn/mariadb//mariadb-${MARIADB_VERSION}/bintar-linux-x86_64/mariadb-${MARIADB_VERSION}-linux-x86_64.tar.gz +clear +echo "=========================================================================" +echo "A tool to auto-compile & install MariaDB 10.1.16 on Redhat/CentOS Linux " +echo "=========================================================================" +cur_dir=$(pwd) +#set mysql root password +echo "===========================" +mysqlrootpwd="MANAGER" +echo -e "Please input the root password of mysql:" +read -p "(Default password: MANAGER):" mysqlrootpwd +if [ "$mysqlrootpwd" = "" ]; then +mysqlrootpwd="MANAGER" fi - -# untar file -echo -n "untar file ..." -tar -xf ${TAR_NAME} -C ${INSTALL_DIR} -ln -s ${INSTALL_DIR}/${UNTAR_NAME} ${INSTALL_DIR}/mysql -ln -s ${INSTALL_DIR}/${UNTAR_NAME} /usr/local/mysql -echo "ok" - -# init db and config -echo -n "init db..." -${INSTALL_DIR}/mysql/scripts/mysql_install_db --user=${MARIADB_USER} --basedir=${INSTALL_DIR}/mysql --datadir=${DATA_DIR} -[ $? -ne 0 ] && exit 1 -cp ${INSTALL_DIR}/mysql/support-files/mysql.server /etc/init.d/mysqld -echo "ok" - -[ -f /etc/my.cnf ] && mv /etc/my.cnf{,.ori} -\cp -rf $(cd `dirname $0` && pwd)/my.cnf /etc/my.cnf - -# set server id -IPADDR=$(/sbin/ifconfig eth0|grep "inet addr"|awk '{print $2}'|awk -F":" '{print $2}') -SERVER_ID=$(echo $IPADDR|awk -F"." '{print $4}') -sed -i "s#server-id = .*#server-id = ${SERVER_ID}#g" /etc/my.cnf -sed -i "s#datadir = .*#datadir = ${DATA_DIR}#g" /etc/my.cnf - -# set purview -chown -R root ${INSTALL_DIR}/${UNTAR_NAME} -chown -R ${MARIADB_USER} ${DATA_DIR} -chmod +x /etc/init.d/mysqld - -# start mariadb -${INSTALL_DIR}/mysql/bin/mysqld_safe --user=${MARIADB_USER} & &> /dev/null -[ $? -ne 0 ] && exit 1 || echo "mariadb started ok" - -# set root passwd -sleep 10 -${INSTALL_DIR}/mysql/bin/mysqladmin -uroot password "${ROOT_PASSWD}" -if [ $? -ne 0 ];then - echo "change password for root failed!" - exit 1 -else - echo "change password for root to :${ROOT_PASSWD}" +echo "===========================" +echo "MySQL root password:$mysqlrootpwd" +echo "===========================" +#which MySQL Version do you want to install? +echo "===========================" +isinstallmysql56="n" +echo "Install MariaDB 10.1.16,Please input y" +read -p "(Please input y , n):" isinstallmysql56 +case "$isinstallmysql56" in +y|Y|Yes|YES|yes|yES|yEs|YeS|yeS) +echo "You will install MySQL 5.6.25" +isinstallmysql56="y" +;; +*) +echo "INPUT error,You will exit install MariaDB 10.1.16" +isinstallmysql56="n" + exit +esac +get_char() +{ +SAVEDSTTY=`stty -g` +stty -echo +stty cbreak +#dd if=/dev/tty bs=1 count=1 2> /dev/null +stty -raw +stty echo +stty $SAVEDSTTY +} +echo "" +echo "Press any key to start...or Press Ctrl+c to cancel" +char=`get_char` +# Initialize the installation related content. +function InitInstall() +{ +cat /etc/issue +uname -a +MemTotal=`free -m | grep Mem | awk '{print $2}'` +echo -e "\n Memory is: ${MemTotal} MB " +#Set timezone +rm -rf /etc/localtime +ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime + #Delete Old Mysql program +rpm -qa|grep mysql +rpm -e mysql +#Disable SeLinux +if [ -s /etc/selinux/config ]; then +sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config +fi + setenforce 0 +} +#Installation of depend on and optimization options. +function InstallDependsAndOpt() +{ +cd $cur_dir +cat >>/etc/security/limits.conf<> /etc/sysctl.conf +} +#Install MySQL +function InstallMySQL56() +{ +echo "============================Install MariaDB 10.1.16==================================" +cd $cur_dir +#Backup old my.cnf +#rm -f /etc/my.cnf +if [ -s /etc/my.cnf ]; then + mv /etc/my.cnf /etc/my.cnf.`date +%Y%m%d%H%M%S`.bak fi - -# -chkconfig mysqld on -ln -sv ${INSTALL_DIR}/mysql/include /usr/include/mysql -echo '/${INSTALL_DIR}/mysql/lib' > /etc/ld.so.conf.d/mysql.conf +#mysql directory configuration +groupadd mysql -g 512 +useradd -u 512 -g mysql -s /sbin/nologin -d /home/mysql mysql +tar xvf /root/mariadb-10.1.16-linux-x86_64.tar.gz +mv /root/mariadb-10.1.16-linux-x86_64 /usr/local/mysql +mkdir -p /data/mysql +mkdir -p /log/mysql +chown -R mysql:mysql /data/mysql +chown -R mysql:mysql /usr/local/mysql +chown -R mysql:mysql /log +SERVERID=`ifconfig eth0 | grep "inet addr" | awk '{ print $2}'| awk -F. '{ print $3$4}'` +cat >>/etc/my.cnf<> /etc/ld.so.conf.d/mysql-x86_64.conf<> /etc/profile << EOF -# mariadb path -PATH=\$PATH:${INSTALL_DIR}/mysql/bin -export PATH +if [ -d "/proc/vz" ];then +ulimit -s unlimited +fi +/etc/init.d/mysqld start +cat >> /etc/profile < /tmp/mysql_sec_script<&1 | tee /root/mysql-install.log +CheckAndDownloadFiles 2>&1 | tee -a /root/mysql-install.log +InstallDependsAndOpt 2>&1 | tee -a /root/mysql-install.log +InstallMySQL56 2>&1 | tee -a /root/mysql-install.log +CheckInstall 2>&1 | tee -a /root/mysql-install.log \ No newline at end of file diff --git a/mysql/mariadb_auto_install.sh b/mysql/mariadb_auto_install.sh new file mode 100644 index 0000000..c58936b --- /dev/null +++ b/mysql/mariadb_auto_install.sh @@ -0,0 +1,97 @@ +#!/bin/bash +# +### +# Filename: install_mariadb.sh +# Author: roguo.wei - roguo.wei@gmail.com +# Description: +# Last Modified: 2017-01-17 00:31 +# Version: 1.0 +### + +INSTALL_DIR="/opt/app" +DATA_DIR="/opt/data" +MARIADB_GROUP="mysql" +MARIADB_USER="mysql" +MARIADB_VERSION="10.1.20" +ROOT_PASSWD="root" +#mariadb-10.1.20-linux-x86_64.tar.gz +TAR_NAME="mariadb-${MARIADB_VERSION}-linux-x86_64.tar.gz" +UNTAR_NAME="mariadb-${MARIADB_VERSION}-linux-x86_64" + +# check mariadb user +echo -n "check MariaDB user... " +id -u ${MARIADB_USER} &> /dev/null +if [ $? -ne 0 ];then + groupadd ${MARIADB_GROUP} + useradd -g ${MARIADB_GROUP} ${MARIADB_USER} +fi +echo "ok" + +# check install dir +[ ! -d "${INSTALL_DIR}" ] && mkdir -p ${INSTALL_DIR} +[ ! -d "${DATA_DIR}" ] && mkdir -p ${DATA_DIR} + +# check mariadb file +if [ ! -f ${TAR_NAME} ];then + wget http://mirrors.tuna.tsinghua.edu.cn/mariadb//mariadb-${MARIADB_VERSION}/bintar-linux-x86_64/mariadb-${MARIADB_VERSION}-linux-x86_64.tar.gz +fi + +# untar file +echo -n "untar file ..." +tar -xf ${TAR_NAME} -C ${INSTALL_DIR} +ln -s ${INSTALL_DIR}/${UNTAR_NAME} ${INSTALL_DIR}/mysql +ln -s ${INSTALL_DIR}/${UNTAR_NAME} /usr/local/mysql +echo "ok" + +# init db and config +echo -n "init db..." +${INSTALL_DIR}/mysql/scripts/mysql_install_db --user=${MARIADB_USER} --basedir=${INSTALL_DIR}/mysql --datadir=${DATA_DIR} +[ $? -ne 0 ] && exit 1 +cp ${INSTALL_DIR}/mysql/support-files/mysql.server /etc/init.d/mysqld +echo "ok" + +[ -f /etc/my.cnf ] && mv /etc/my.cnf{,.ori} +\cp -rf $(cd `dirname $0` && pwd)/my.cnf /etc/my.cnf + +# set server id +IPADDR=$(/sbin/ifconfig eth0|grep "inet addr"|awk '{print $2}'|awk -F":" '{print $2}') +SERVER_ID=$(echo $IPADDR|awk -F"." '{print $4}') +sed -i "s#server-id = .*#server-id = ${SERVER_ID}#g" /etc/my.cnf +sed -i "s#datadir = .*#datadir = ${DATA_DIR}#g" /etc/my.cnf + +# set purview +chown -R root ${INSTALL_DIR}/${UNTAR_NAME} +chown -R ${MARIADB_USER} ${DATA_DIR} +chmod +x /etc/init.d/mysqld + +# start mariadb +${INSTALL_DIR}/mysql/bin/mysqld_safe --user=${MARIADB_USER} & &> /dev/null +[ $? -ne 0 ] && exit 1 || echo "mariadb started ok" + +# set root passwd +sleep 10 +${INSTALL_DIR}/mysql/bin/mysqladmin -uroot password "${ROOT_PASSWD}" +if [ $? -ne 0 ];then + echo "change password for root failed!" + exit 1 +else + echo "change password for root to :${ROOT_PASSWD}" +fi + +# +chkconfig mysqld on +ln -sv ${INSTALL_DIR}/mysql/include /usr/include/mysql +echo '/${INSTALL_DIR}/mysql/lib' > /etc/ld.so.conf.d/mysql.conf +ldconfig + +# set path +echo -n "set path... " +cat >> /etc/profile << EOF +# mariadb path +PATH=\$PATH:${INSTALL_DIR}/mysql/bin +export PATH +EOF +echo "ok" +. /etc/profile + +echo "mariadb installed successfully!" \ No newline at end of file diff --git a/shell/recover_mem.sh b/shell/recover_mem.sh new file mode 100644 index 0000000..26bc5a3 --- /dev/null +++ b/shell/recover_mem.sh @@ -0,0 +1,38 @@ +#!/bin/bash +################## +#转载 http://blog.51cto.com/suifu/1828050 +#author:rrhelei@126.com# +################## +#系统分配的区总量 +mem_total=`free -m |grep Mem | awk '{print $2}'` + +#当前剩余的free大小 +mem_free=`free -m |grep Mem | awk '{print $4}'` + +#当前已使用的used大小 +mem_used=`free -m |grep Mem | awk '{print $3}'` + + +if (($mem_used !=0)); then + +#如果已被使用,则计算当前剩余free所占总量的百分比,用小数来表示,要在小数点前面补一个整数位0 + mem_per=0`echo"scale=2;$mem_free/$mem_total" | bc` + DATA="$(date -d "today"+"%Y-%m-%d-%H-%M") free percent is : $mem_per" +echo $DATA >>/var/log/mem_detect.log +#设置的告警值为20%(即使用超过80%的时候告警)。 + mem_warn=0.20 + +#当前剩余百分比与告警值进行比较(当大于告警值(即剩余20%以上)时会返回1,小于(即剩余不足20%)时会返回0 ) + mem_now=`expr $mem_per \> $mem_warn` + +#如果当前使用超过80%(即剩余小于20%,上面的返回值等于0),释放内存 + if (($mem_now == 0)); then + sync + sync + echo 1 > /proc/sys/vm/drop_caches + # To free dentries and inodes: + echo 2 > /proc/sys/vm/drop_caches + # To free pagecache, dentries andinodes: + echo 3 > /proc/sys/vm/drop_caches + fi +fi \ No newline at end of file diff --git a/shell/route_cnc_linux_V20110818.sh b/shell/route_cnc_linux_V20110818.sh new file mode 100644 index 0000000..727aa98 --- /dev/null +++ b/shell/route_cnc_linux_V20110818.sh @@ -0,0 +1,2159 @@ +#!/bin/sh - +echo "Last modified at 2011-8-18 by Johnson1" +echo -n "please input gateway of cnc: " +read cncgw +echo -n "add or del: " +read option +if [ "$option" = "del" ]; then +route $option -net 1.24.0.0/13 gw $cncgw metric 1 +route $option -net 1.56.0.0/13 gw $cncgw metric 1 +route $option -net 1.188.0.0/14 gw $cncgw metric 1 +route $option -net 14.204.0.0/15 gw $cncgw metric 1 +route $option -net 27.8.0.0/13 gw $cncgw metric 1 +route $option -net 27.36.0.0/14 gw $cncgw metric 1 +route $option -net 27.40.0.0/13 gw $cncgw metric 1 +route $option -net 27.98.224.0/19 gw $cncgw metric 1 +route $option -net 27.115.0.0/17 gw $cncgw metric 1 +route $option -net 27.131.220.0/22 gw $cncgw metric 1 +route $option -net 27.192.0.0/11 gw $cncgw metric 1 +route $option -net 36.32.0.0/14 gw $cncgw metric 1 +route $option -net 36.248.0.0/14 gw $cncgw metric 1 +route $option -net 39.64.0.0/11 gw $cncgw metric 1 +route $option -net 42.4.0.0/14 gw $cncgw metric 1 +route $option -net 42.48.0.0/15 gw $cncgw metric 1 +route $option -net 42.52.0.0/14 gw $cncgw metric 1 +route $option -net 42.56.0.0/14 gw $cncgw metric 1 +route $option -net 42.63.0.0/16 gw $cncgw metric 1 +route $option -net 42.84.0.0/14 gw $cncgw metric 1 +route $option -net 42.176.0.0/13 gw $cncgw metric 1 +route $option -net 42.224.0.0/12 gw $cncgw metric 1 +route $option -net 58.16.0.0/13 gw $cncgw metric 1 +route $option -net 58.67.32.0/19 gw $cncgw metric 1 +route $option -net 58.83.8.0/24 gw $cncgw metric 1 +route $option -net 58.83.32.0/19 gw $cncgw metric 1 +route $option -net 58.83.64.0/22 gw $cncgw metric 1 +route $option -net 58.100.0.0/16 gw $cncgw metric 1 +route $option -net 58.101.64.0/18 gw $cncgw metric 1 +route $option -net 58.101.128.0/18 gw $cncgw metric 1 +route $option -net 58.101.192.0/19 gw $cncgw metric 1 +route $option -net 58.101.224.0/20 gw $cncgw metric 1 +route $option -net 58.101.241.0/24 gw $cncgw metric 1 +route $option -net 58.101.242.0/23 gw $cncgw metric 1 +route $option -net 58.101.244.0/22 gw $cncgw metric 1 +route $option -net 58.101.248.0/21 gw $cncgw metric 1 +route $option -net 58.240.0.0/12 gw $cncgw metric 1 +route $option -net 59.191.80.0/20 gw $cncgw metric 1 +route $option -net 59.193.0.0/20 gw $cncgw metric 1 +route $option -net 60.0.0.0/11 gw $cncgw metric 1 +route $option -net 60.55.0.0/16 gw $cncgw metric 1 +route $option -net 60.208.0.0/12 gw $cncgw metric 1 +route $option -net 60.255.0.0/16 gw $cncgw metric 1 +route $option -net 61.4.64.0/20 gw $cncgw metric 1 +route $option -net 61.48.0.0/13 gw $cncgw metric 1 +route $option -net 61.133.0.0/17 gw $cncgw metric 1 +route $option -net 61.134.96.0/19 gw $cncgw metric 1 +route $option -net 61.134.128.0/17 gw $cncgw metric 1 +route $option -net 61.135.0.0/16 gw $cncgw metric 1 +route $option -net 61.136.0.0/17 gw $cncgw metric 1 +route $option -net 61.137.128.0/17 gw $cncgw metric 1 +route $option -net 61.138.0.0/17 gw $cncgw metric 1 +route $option -net 61.138.128.0/18 gw $cncgw metric 1 +route $option -net 61.139.128.0/18 gw $cncgw metric 1 +route $option -net 61.148.0.0/15 gw $cncgw metric 1 +route $option -net 61.156.0.0/16 gw $cncgw metric 1 +route $option -net 61.158.0.0/16 gw $cncgw metric 1 +route $option -net 61.159.0.0/18 gw $cncgw metric 1 +route $option -net 61.161.0.0/18 gw $cncgw metric 1 +route $option -net 61.161.128.0/17 gw $cncgw metric 1 +route $option -net 61.162.0.0/15 gw $cncgw metric 1 +route $option -net 61.167.0.0/16 gw $cncgw metric 1 +route $option -net 61.168.0.0/16 gw $cncgw metric 1 +route $option -net 61.176.0.0/16 gw $cncgw metric 1 +route $option -net 61.179.0.0/16 gw $cncgw metric 1 +route $option -net 61.180.128.0/17 gw $cncgw metric 1 +route $option -net 61.181.0.0/16 gw $cncgw metric 1 +route $option -net 61.182.0.0/16 gw $cncgw metric 1 +route $option -net 61.189.0.0/17 gw $cncgw metric 1 +route $option -net 61.237.97.200/30 gw $cncgw metric 1 +route $option -net 61.240.0.0/17 gw $cncgw metric 1 +route $option -net 61.240.128.0/18 gw $cncgw metric 1 +route $option -net 61.240.192.0/19 gw $cncgw metric 1 +route $option -net 61.240.224.0/20 gw $cncgw metric 1 +route $option -net 61.240.240.0/21 gw $cncgw metric 1 +route $option -net 61.241.0.0/16 gw $cncgw metric 1 +route $option -net 61.242.0.0/15 gw $cncgw metric 1 +route $option -net 101.16.0.0/12 gw $cncgw metric 1 +route $option -net 101.44.0.0/14 gw $cncgw metric 1 +route $option -net 101.64.0.0/13 gw $cncgw metric 1 +route $option -net 101.72.0.0/14 gw $cncgw metric 1 +route $option -net 101.204.0.0/14 gw $cncgw metric 1 +route $option -net 103.3.96.0/19 gw $cncgw metric 1 +route $option -net 103.3.132.0/22 gw $cncgw metric 1 +route $option -net 103.3.136.0/21 gw $cncgw metric 1 +route $option -net 103.3.148.0/22 gw $cncgw metric 1 +route $option -net 103.3.152.0/21 gw $cncgw metric 1 +route $option -net 103.22.188.0/22 gw $cncgw metric 1 +route $option -net 110.6.0.0/15 gw $cncgw metric 1 +route $option -net 110.16.0.0/14 gw $cncgw metric 1 +route $option -net 110.42.0.0/16 gw $cncgw metric 1 +route $option -net 110.51.0.0/16 gw $cncgw metric 1 +route $option -net 110.52.0.0/15 gw $cncgw metric 1 +route $option -net 110.72.0.0/15 gw $cncgw metric 1 +route $option -net 110.228.0.0/14 gw $cncgw metric 1 +route $option -net 110.240.0.0/12 gw $cncgw metric 1 +route $option -net 111.67.192.0/20 gw $cncgw metric 1 +route $option -net 111.85.0.0/16 gw $cncgw metric 1 +route $option -net 111.119.144.0/21 gw $cncgw metric 1 +route $option -net 111.160.0.0/13 gw $cncgw metric 1 +route $option -net 111.192.0.0/12 gw $cncgw metric 1 +route $option -net 111.228.1.0/24 gw $cncgw metric 1 +route $option -net 111.228.240.0/24 gw $cncgw metric 1 +route $option -net 112.64.0.0/15 gw $cncgw metric 1 +route $option -net 112.80.0.0/12 gw $cncgw metric 1 +route $option -net 112.96.0.0/15 gw $cncgw metric 1 +route $option -net 112.109.128.0/17 gw $cncgw metric 1 +route $option -net 112.111.0.0/16 gw $cncgw metric 1 +route $option -net 112.122.0.0/15 gw $cncgw metric 1 +route $option -net 112.132.0.0/16 gw $cncgw metric 1 +route $option -net 112.192.0.0/14 gw $cncgw metric 1 +route $option -net 112.224.0.0/11 gw $cncgw metric 1 +route $option -net 113.0.0.0/13 gw $cncgw metric 1 +route $option -net 113.8.0.0/15 gw $cncgw metric 1 +route $option -net 113.11.192.0/19 gw $cncgw metric 1 +route $option -net 113.31.32.0/20 gw $cncgw metric 1 +route $option -net 113.44.0.0/17 gw $cncgw metric 1 +route $option -net 113.56.0.0/15 gw $cncgw metric 1 +route $option -net 113.58.0.0/16 gw $cncgw metric 1 +route $option -net 113.59.0.0/17 gw $cncgw metric 1 +route $option -net 113.194.0.0/15 gw $cncgw metric 1 +route $option -net 113.200.0.0/15 gw $cncgw metric 1 +route $option -net 113.204.0.0/14 gw $cncgw metric 1 +route $option -net 113.213.0.0/18 gw $cncgw metric 1 +route $option -net 113.224.0.0/12 gw $cncgw metric 1 +route $option -net 114.28.192.0/18 gw $cncgw metric 1 +route $option -net 114.66.0.0/18 gw $cncgw metric 1 +route $option -net 114.111.160.0/20 gw $cncgw metric 1 +route $option -net 114.112.16.0/23 gw $cncgw metric 1 +route $option -net 114.112.28.0/23 gw $cncgw metric 1 +route $option -net 114.112.136.0/21 gw $cncgw metric 1 +route $option -net 114.112.144.0/20 gw $cncgw metric 1 +route $option -net 114.112.192.0/18 gw $cncgw metric 1 +route $option -net 114.113.208.0/23 gw $cncgw metric 1 +route $option -net 114.118.0.0/16 gw $cncgw metric 1 +route $option -net 114.132.128.0/17 gw $cncgw metric 1 +route $option -net 114.240.0.0/12 gw $cncgw metric 1 +route $option -net 115.46.0.0/15 gw $cncgw metric 1 +route $option -net 115.48.0.0/12 gw $cncgw metric 1 +route $option -net 115.85.192.0/18 gw $cncgw metric 1 +route $option -net 116.2.0.0/15 gw $cncgw metric 1 +route $option -net 116.60.240.0/21 gw $cncgw metric 1 +route $option -net 116.66.32.0/20 gw $cncgw metric 1 +route $option -net 116.90.80.0/20 gw $cncgw metric 1 +route $option -net 116.95.0.0/16 gw $cncgw metric 1 +route $option -net 116.112.0.0/14 gw $cncgw metric 1 +route $option -net 116.116.0.0/15 gw $cncgw metric 1 +route $option -net 116.128.0.0/19 gw $cncgw metric 1 +route $option -net 116.199.128.0/23 gw $cncgw metric 1 +route $option -net 116.199.135.0/24 gw $cncgw metric 1 +route $option -net 116.199.136.0/23 gw $cncgw metric 1 +route $option -net 116.199.138.0/24 gw $cncgw metric 1 +route $option -net 116.204.252.0/22 gw $cncgw metric 1 +route $option -net 116.213.64.0/18 gw $cncgw metric 1 +route $option -net 116.213.128.0/17 gw $cncgw metric 1 +route $option -net 116.216.240.0/22 gw $cncgw metric 1 +route $option -net 116.244.0.0/16 gw $cncgw metric 1 +route $option -net 117.8.0.0/13 gw $cncgw metric 1 +route $option -net 117.53.48.0/20 gw $cncgw metric 1 +route $option -net 117.74.64.0/20 gw $cncgw metric 1 +route $option -net 117.76.128.0/20 gw $cncgw metric 1 +route $option -net 117.76.252.0/24 gw $cncgw metric 1 +route $option -net 117.78.128.0/17 gw $cncgw metric 1 +route $option -net 117.79.0.0/18 gw $cncgw metric 1 +route $option -net 117.79.64.0/20 gw $cncgw metric 1 +route $option -net 117.79.136.0/21 gw $cncgw metric 1 +route $option -net 117.79.144.0/21 gw $cncgw metric 1 +route $option -net 117.79.240.0/21 gw $cncgw metric 1 +route $option -net 118.26.16.0/20 gw $cncgw metric 1 +route $option -net 118.26.128.0/18 gw $cncgw metric 1 +route $option -net 118.67.112.0/20 gw $cncgw metric 1 +route $option -net 118.72.0.0/13 gw $cncgw metric 1 +route $option -net 118.80.0.0/15 gw $cncgw metric 1 +route $option -net 118.89.0.0/16 gw $cncgw metric 1 +route $option -net 118.91.240.0/20 gw $cncgw metric 1 +route $option -net 118.126.7.0/24 gw $cncgw metric 1 +route $option -net 118.126.128.0/17 gw $cncgw metric 1 +route $option -net 118.185.0.0/17 gw $cncgw metric 1 +route $option -net 118.192.128.0/24 gw $cncgw metric 1 +route $option -net 118.193.240.0/21 gw $cncgw metric 1 +route $option -net 118.194.64.0/18 gw $cncgw metric 1 +route $option -net 118.194.128.0/21 gw $cncgw metric 1 +route $option -net 118.194.160.0/19 gw $cncgw metric 1 +route $option -net 118.194.232.0/21 gw $cncgw metric 1 +route $option -net 118.212.0.0/16 gw $cncgw metric 1 +route $option -net 118.224.0.0/18 gw $cncgw metric 1 +route $option -net 118.227.0.0/17 gw $cncgw metric 1 +route $option -net 118.242.32.0/21 gw $cncgw metric 1 +route $option -net 119.4.0.0/14 gw $cncgw metric 1 +route $option -net 119.9.0.0/17 gw $cncgw metric 1 +route $option -net 119.18.224.0/21 gw $cncgw metric 1 +route $option -net 119.19.128.0/17 gw $cncgw metric 1 +route $option -net 119.32.0.0/18 gw $cncgw metric 1 +route $option -net 119.32.64.0/19 gw $cncgw metric 1 +route $option -net 119.32.192.0/18 gw $cncgw metric 1 +route $option -net 119.36.0.0/16 gw $cncgw metric 1 +route $option -net 119.38.128.0/19 gw $cncgw metric 1 +route $option -net 119.38.160.0/20 gw $cncgw metric 1 +route $option -net 119.39.0.0/16 gw $cncgw metric 1 +route $option -net 119.48.0.0/13 gw $cncgw metric 1 +route $option -net 119.59.128.0/17 gw $cncgw metric 1 +route $option -net 119.62.0.0/16 gw $cncgw metric 1 +route $option -net 119.80.0.0/16 gw $cncgw metric 1 +route $option -net 119.81.0.0/17 gw $cncgw metric 1 +route $option -net 119.108.0.0/15 gw $cncgw metric 1 +route $option -net 119.112.0.0/13 gw $cncgw metric 1 +route $option -net 119.143.0.0/17 gw $cncgw metric 1 +route $option -net 119.143.128.0/19 gw $cncgw metric 1 +route $option -net 119.148.160.0/20 gw $cncgw metric 1 +route $option -net 119.161.128.0/17 gw $cncgw metric 1 +route $option -net 119.162.0.0/15 gw $cncgw metric 1 +route $option -net 119.164.0.0/14 gw $cncgw metric 1 +route $option -net 119.176.0.0/12 gw $cncgw metric 1 +route $option -net 119.248.0.0/14 gw $cncgw metric 1 +route $option -net 119.253.0.0/18 gw $cncgw metric 1 +route $option -net 119.253.128.0/17 gw $cncgw metric 1 +route $option -net 120.0.0.0/12 gw $cncgw metric 1 +route $option -net 120.31.0.0/18 gw $cncgw metric 1 +route $option -net 120.31.172.0/22 gw $cncgw metric 1 +route $option -net 120.31.176.0/20 gw $cncgw metric 1 +route $option -net 120.31.192.0/18 gw $cncgw metric 1 +route $option -net 120.64.48.0/20 gw $cncgw metric 1 +route $option -net 120.64.96.0/20 gw $cncgw metric 1 +route $option -net 120.64.112.0/21 gw $cncgw metric 1 +route $option -net 120.64.120.0/22 gw $cncgw metric 1 +route $option -net 120.65.130.0/23 gw $cncgw metric 1 +route $option -net 120.65.192.0/24 gw $cncgw metric 1 +route $option -net 120.65.250.0/24 gw $cncgw metric 1 +route $option -net 120.65.254.0/24 gw $cncgw metric 1 +route $option -net 120.67.127.0/24 gw $cncgw metric 1 +route $option -net 120.67.128.0/17 gw $cncgw metric 1 +route $option -net 120.80.0.0/13 gw $cncgw metric 1 +route $option -net 120.128.192.0/22 gw $cncgw metric 1 +route $option -net 120.128.196.0/23 gw $cncgw metric 1 +route $option -net 120.128.200.0/21 gw $cncgw metric 1 +route $option -net 120.128.212.0/22 gw $cncgw metric 1 +route $option -net 120.128.216.0/23 gw $cncgw metric 1 +route $option -net 120.137.0.0/20 gw $cncgw metric 1 +route $option -net 120.137.64.0/18 gw $cncgw metric 1 +route $option -net 121.16.0.0/12 gw $cncgw metric 1 +route $option -net 121.36.24.0/21 gw $cncgw metric 1 +route $option -net 121.36.80.0/20 gw $cncgw metric 1 +route $option -net 121.36.160.0/20 gw $cncgw metric 1 +route $option -net 121.36.184.0/23 gw $cncgw metric 1 +route $option -net 121.36.191.0/24 gw $cncgw metric 1 +route $option -net 121.40.216.0/24 gw $cncgw metric 1 +route $option -net 121.40.220.0/24 gw $cncgw metric 1 +route $option -net 121.40.223.0/24 gw $cncgw metric 1 +route $option -net 121.40.240.0/20 gw $cncgw metric 1 +route $option -net 121.55.0.0/18 gw $cncgw metric 1 +route $option -net 121.70.64.0/20 gw $cncgw metric 1 +route $option -net 121.101.208.0/20 gw $cncgw metric 1 +route $option -net 121.196.0.0/15 gw $cncgw metric 1 +route $option -net 122.9.240.0/21 gw $cncgw metric 1 +route $option -net 122.11.48.0/20 gw $cncgw metric 1 +route $option -net 122.12.0.0/20 gw $cncgw metric 1 +route $option -net 122.14.195.0/24 gw $cncgw metric 1 +route $option -net 122.15.16.0/20 gw $cncgw metric 1 +route $option -net 122.96.0.0/15 gw $cncgw metric 1 +route $option -net 122.112.128.0/19 gw $cncgw metric 1 +route $option -net 122.113.0.0/19 gw $cncgw metric 1 +route $option -net 122.136.0.0/13 gw $cncgw metric 1 +route $option -net 122.156.0.0/14 gw $cncgw metric 1 +route $option -net 122.188.0.0/14 gw $cncgw metric 1 +route $option -net 122.192.0.0/14 gw $cncgw metric 1 +route $option -net 122.198.128.0/21 gw $cncgw metric 1 +route $option -net 123.4.0.0/14 gw $cncgw metric 1 +route $option -net 123.8.0.0/13 gw $cncgw metric 1 +route $option -net 123.49.192.0/21 gw $cncgw metric 1 +route $option -net 123.49.224.0/21 gw $cncgw metric 1 +route $option -net 123.56.32.0/19 gw $cncgw metric 1 +route $option -net 123.56.64.0/24 gw $cncgw metric 1 +route $option -net 123.56.92.0/22 gw $cncgw metric 1 +route $option -net 123.57.0.0/22 gw $cncgw metric 1 +route $option -net 123.57.8.0/21 gw $cncgw metric 1 +route $option -net 123.57.16.0/21 gw $cncgw metric 1 +route $option -net 123.57.24.0/22 gw $cncgw metric 1 +route $option -net 123.57.64.0/18 gw $cncgw metric 1 +route $option -net 123.112.0.0/12 gw $cncgw metric 1 +route $option -net 123.128.0.0/13 gw $cncgw metric 1 +route $option -net 123.138.0.0/15 gw $cncgw metric 1 +route $option -net 123.144.0.0/14 gw $cncgw metric 1 +route $option -net 123.148.0.0/16 gw $cncgw metric 1 +route $option -net 123.151.96.0/20 gw $cncgw metric 1 +route $option -net 123.152.0.0/13 gw $cncgw metric 1 +route $option -net 123.188.0.0/14 gw $cncgw metric 1 +route $option -net 123.232.0.0/14 gw $cncgw metric 1 +route $option -net 123.242.0.0/18 gw $cncgw metric 1 +route $option -net 123.242.64.0/20 gw $cncgw metric 1 +route $option -net 123.242.80.0/21 gw $cncgw metric 1 +route $option -net 123.253.132.0/22 gw $cncgw metric 1 +route $option -net 124.20.64.0/19 gw $cncgw metric 1 +route $option -net 124.20.112.0/20 gw $cncgw metric 1 +route $option -net 124.20.128.0/19 gw $cncgw metric 1 +route $option -net 124.20.160.0/22 gw $cncgw metric 1 +route $option -net 124.20.164.0/23 gw $cncgw metric 1 +route $option -net 124.20.176.0/20 gw $cncgw metric 1 +route $option -net 124.20.192.0/18 gw $cncgw metric 1 +route $option -net 124.21.0.0/17 gw $cncgw metric 1 +route $option -net 124.21.128.0/18 gw $cncgw metric 1 +route $option -net 124.42.128.0/17 gw $cncgw metric 1 +route $option -net 124.64.0.0/15 gw $cncgw metric 1 +route $option -net 124.66.0.0/17 gw $cncgw metric 1 +route $option -net 124.67.0.0/16 gw $cncgw metric 1 +route $option -net 124.71.128.0/19 gw $cncgw metric 1 +route $option -net 124.71.160.0/20 gw $cncgw metric 1 +route $option -net 124.71.176.0/21 gw $cncgw metric 1 +route $option -net 124.71.188.0/22 gw $cncgw metric 1 +route $option -net 124.88.0.0/13 gw $cncgw metric 1 +route $option -net 124.128.0.0/13 gw $cncgw metric 1 +route $option -net 124.152.0.0/16 gw $cncgw metric 1 +route $option -net 124.160.0.0/13 gw $cncgw metric 1 +route $option -net 124.172.168.0/24 gw $cncgw metric 1 +route $option -net 124.240.128.0/18 gw $cncgw metric 1 +route $option -net 125.32.0.0/14 gw $cncgw metric 1 +route $option -net 125.36.0.0/15 gw $cncgw metric 1 +route $option -net 125.38.0.0/16 gw $cncgw metric 1 +route $option -net 125.39.0.0/18 gw $cncgw metric 1 +route $option -net 125.39.64.0/19 gw $cncgw metric 1 +route $option -net 125.39.96.0/21 gw $cncgw metric 1 +route $option -net 125.39.104.0/22 gw $cncgw metric 1 +route $option -net 125.39.112.0/20 gw $cncgw metric 1 +route $option -net 125.39.128.0/17 gw $cncgw metric 1 +route $option -net 125.40.0.0/13 gw $cncgw metric 1 +route $option -net 125.61.128.0/17 gw $cncgw metric 1 +route $option -net 125.171.137.0/24 gw $cncgw metric 1 +route $option -net 125.211.0.0/16 gw $cncgw metric 1 +route $option -net 139.208.0.0/13 gw $cncgw metric 1 +route $option -net 139.226.0.0/15 gw $cncgw metric 1 +route $option -net 140.206.0.0/15 gw $cncgw metric 1 +route $option -net 150.255.0.0/16 gw $cncgw metric 1 +route $option -net 153.0.0.0/16 gw $cncgw metric 1 +route $option -net 153.3.0.0/16 gw $cncgw metric 1 +route $option -net 153.34.0.0/15 gw $cncgw metric 1 +route $option -net 153.36.0.0/15 gw $cncgw metric 1 +route $option -net 153.99.0.0/16 gw $cncgw metric 1 +route $option -net 153.101.0.0/16 gw $cncgw metric 1 +route $option -net 153.118.0.0/15 gw $cncgw metric 1 +route $option -net 157.0.0.0/16 gw $cncgw metric 1 +route $option -net 157.18.0.0/16 gw $cncgw metric 1 +route $option -net 157.61.0.0/16 gw $cncgw metric 1 +route $option -net 157.122.0.0/16 gw $cncgw metric 1 +route $option -net 157.148.0.0/16 gw $cncgw metric 1 +route $option -net 157.156.0.0/16 gw $cncgw metric 1 +route $option -net 157.255.0.0/16 gw $cncgw metric 1 +route $option -net 163.0.0.0/16 gw $cncgw metric 1 +route $option -net 163.125.0.0/16 gw $cncgw metric 1 +route $option -net 163.142.0.0/16 gw $cncgw metric 1 +route $option -net 163.177.0.0/16 gw $cncgw metric 1 +route $option -net 163.179.0.0/16 gw $cncgw metric 1 +route $option -net 163.204.0.0/16 gw $cncgw metric 1 +route $option -net 171.34.0.0/15 gw $cncgw metric 1 +route $option -net 171.36.0.0/14 gw $cncgw metric 1 +route $option -net 175.16.0.0/13 gw $cncgw metric 1 +route $option -net 175.42.0.0/15 gw $cncgw metric 1 +route $option -net 175.44.0.0/16 gw $cncgw metric 1 +route $option -net 175.106.128.0/17 gw $cncgw metric 1 +route $option -net 175.146.0.0/15 gw $cncgw metric 1 +route $option -net 175.148.0.0/14 gw $cncgw metric 1 +route $option -net 175.152.0.0/14 gw $cncgw metric 1 +route $option -net 175.160.0.0/12 gw $cncgw metric 1 +route $option -net 175.184.128.0/18 gw $cncgw metric 1 +route $option -net 180.76.0.0/16 gw $cncgw metric 1 +route $option -net 180.95.128.0/17 gw $cncgw metric 1 +route $option -net 180.129.128.0/17 gw $cncgw metric 1 +route $option -net 180.130.0.0/16 gw $cncgw metric 1 +route $option -net 180.184.0.0/16 gw $cncgw metric 1 +route $option -net 180.189.149.0/24 gw $cncgw metric 1 +route $option -net 180.189.150.0/23 gw $cncgw metric 1 +route $option -net 180.223.0.0/17 gw $cncgw metric 1 +route $option -net 182.18.0.0/17 gw $cncgw metric 1 +route $option -net 182.48.96.0/19 gw $cncgw metric 1 +route $option -net 182.54.0.0/17 gw $cncgw metric 1 +route $option -net 182.61.130.0/24 gw $cncgw metric 1 +route $option -net 182.88.0.0/14 gw $cncgw metric 1 +route $option -net 182.112.0.0/12 gw $cncgw metric 1 +route $option -net 182.236.160.0/20 gw $cncgw metric 1 +route $option -net 182.236.188.0/22 gw $cncgw metric 1 +route $option -net 183.81.180.0/22 gw $cncgw metric 1 +route $option -net 183.92.0.0/14 gw $cncgw metric 1 +route $option -net 183.184.0.0/13 gw $cncgw metric 1 +route $option -net 202.4.252.0/22 gw $cncgw metric 1 +route $option -net 202.63.248.0/22 gw $cncgw metric 1 +route $option -net 202.92.0.0/22 gw $cncgw metric 1 +route $option -net 202.96.0.0/18 gw $cncgw metric 1 +route $option -net 202.96.64.0/19 gw $cncgw metric 1 +route $option -net 202.97.110.0/24 gw $cncgw metric 1 +route $option -net 202.97.128.0/17 gw $cncgw metric 1 +route $option -net 202.98.0.0/19 gw $cncgw metric 1 +route $option -net 202.99.0.0/21 gw $cncgw metric 1 +route $option -net 202.99.9.0/24 gw $cncgw metric 1 +route $option -net 202.99.10.0/24 gw $cncgw metric 1 +route $option -net 202.99.25.0/24 gw $cncgw metric 1 +route $option -net 202.99.64.0/18 gw $cncgw metric 1 +route $option -net 202.99.128.0/17 gw $cncgw metric 1 +route $option -net 202.102.128.0/18 gw $cncgw metric 1 +route $option -net 202.102.224.0/19 gw $cncgw metric 1 +route $option -net 202.106.0.0/17 gw $cncgw metric 1 +route $option -net 202.106.128.0/19 gw $cncgw metric 1 +route $option -net 202.106.160.0/20 gw $cncgw metric 1 +route $option -net 202.106.176.0/21 gw $cncgw metric 1 +route $option -net 202.106.184.0/23 gw $cncgw metric 1 +route $option -net 202.106.186.0/24 gw $cncgw metric 1 +route $option -net 202.106.188.0/22 gw $cncgw metric 1 +route $option -net 202.106.192.0/18 gw $cncgw metric 1 +route $option -net 202.107.0.0/17 gw $cncgw metric 1 +route $option -net 202.108.0.0/24 gw $cncgw metric 1 +route $option -net 202.108.1.64/26 gw $cncgw metric 1 +route $option -net 202.108.1.128/25 gw $cncgw metric 1 +route $option -net 202.108.2.0/23 gw $cncgw metric 1 +route $option -net 202.108.4.0/22 gw $cncgw metric 1 +route $option -net 202.108.8.0/21 gw $cncgw metric 1 +route $option -net 202.108.16.0/20 gw $cncgw metric 1 +route $option -net 202.108.32.0/19 gw $cncgw metric 1 +route $option -net 202.108.64.0/18 gw $cncgw metric 1 +route $option -net 202.108.128.0/18 gw $cncgw metric 1 +route $option -net 202.108.192.0/19 gw $cncgw metric 1 +route $option -net 202.108.224.0/20 gw $cncgw metric 1 +route $option -net 202.108.240.0/21 gw $cncgw metric 1 +route $option -net 202.108.248.0/24 gw $cncgw metric 1 +route $option -net 202.108.251.0/24 gw $cncgw metric 1 +route $option -net 202.108.252.0/22 gw $cncgw metric 1 +route $option -net 202.110.0.0/17 gw $cncgw metric 1 +route $option -net 202.110.192.0/18 gw $cncgw metric 1 +route $option -net 202.111.128.0/18 gw $cncgw metric 1 +route $option -net 202.130.247.0/24 gw $cncgw metric 1 +route $option -net 202.152.176.0/20 gw $cncgw metric 1 +route $option -net 203.92.160.0/19 gw $cncgw metric 1 +route $option -net 203.93.64.0/20 gw $cncgw metric 1 +route $option -net 203.93.94.0/24 gw $cncgw metric 1 +route $option -net 203.93.96.0/24 gw $cncgw metric 1 +route $option -net 203.93.104.0/21 gw $cncgw metric 1 +route $option -net 203.93.112.0/23 gw $cncgw metric 1 +route $option -net 203.93.114.0/24 gw $cncgw metric 1 +route $option -net 203.93.116.0/24 gw $cncgw metric 1 +route $option -net 203.93.120.0/23 gw $cncgw metric 1 +route $option -net 203.93.122.0/24 gw $cncgw metric 1 +route $option -net 203.93.130.0/23 gw $cncgw metric 1 +route $option -net 203.93.145.0/24 gw $cncgw metric 1 +route $option -net 203.93.153.0/24 gw $cncgw metric 1 +route $option -net 203.93.166.0/23 gw $cncgw metric 1 +route $option -net 203.93.169.0/24 gw $cncgw metric 1 +route $option -net 203.93.170.0/24 gw $cncgw metric 1 +route $option -net 203.93.172.0/22 gw $cncgw metric 1 +route $option -net 203.93.177.0/24 gw $cncgw metric 1 +route $option -net 203.93.179.128/25 gw $cncgw metric 1 +route $option -net 203.93.180.0/23 gw $cncgw metric 1 +route $option -net 203.93.182.128/25 gw $cncgw metric 1 +route $option -net 203.93.184.0/23 gw $cncgw metric 1 +route $option -net 203.93.186.0/24 gw $cncgw metric 1 +route $option -net 203.93.187.0/25 gw $cncgw metric 1 +route $option -net 203.93.188.0/25 gw $cncgw metric 1 +route $option -net 203.93.189.0/24 gw $cncgw metric 1 +route $option -net 203.93.191.0/24 gw $cncgw metric 1 +route $option -net 203.93.193.0/24 gw $cncgw metric 1 +route $option -net 203.93.194.0/24 gw $cncgw metric 1 +route $option -net 203.93.196.0/24 gw $cncgw metric 1 +route $option -net 203.93.198.0/23 gw $cncgw metric 1 +route $option -net 203.93.200.0/23 gw $cncgw metric 1 +route $option -net 203.93.204.0/24 gw $cncgw metric 1 +route $option -net 203.93.208.0/20 gw $cncgw metric 1 +route $option -net 203.93.234.0/23 gw $cncgw metric 1 +route $option -net 203.93.236.0/22 gw $cncgw metric 1 +route $option -net 203.93.240.0/20 gw $cncgw metric 1 +route $option -net 203.135.160.0/20 gw $cncgw metric 1 +route $option -net 203.175.192.0/18 gw $cncgw metric 1 +route $option -net 210.2.0.0/22 gw $cncgw metric 1 +route $option -net 210.2.24.0/21 gw $cncgw metric 1 +route $option -net 210.5.142.192/26 gw $cncgw metric 1 +route $option -net 210.5.143.0/24 gw $cncgw metric 1 +route $option -net 210.12.0.0/19 gw $cncgw metric 1 +route $option -net 210.12.32.0/21 gw $cncgw metric 1 +route $option -net 210.12.40.0/22 gw $cncgw metric 1 +route $option -net 210.12.44.0/23 gw $cncgw metric 1 +route $option -net 210.12.47.0/24 gw $cncgw metric 1 +route $option -net 210.12.48.0/22 gw $cncgw metric 1 +route $option -net 210.12.52.0/23 gw $cncgw metric 1 +route $option -net 210.12.54.0/24 gw $cncgw metric 1 +route $option -net 210.12.56.0/21 gw $cncgw metric 1 +route $option -net 210.12.64.0/23 gw $cncgw metric 1 +route $option -net 210.12.66.0/24 gw $cncgw metric 1 +route $option -net 210.12.69.0/24 gw $cncgw metric 1 +route $option -net 210.12.70.0/23 gw $cncgw metric 1 +route $option -net 210.12.73.0/24 gw $cncgw metric 1 +route $option -net 210.12.74.0/23 gw $cncgw metric 1 +route $option -net 210.12.76.0/22 gw $cncgw metric 1 +route $option -net 210.12.80.0/20 gw $cncgw metric 1 +route $option -net 210.12.96.0/21 gw $cncgw metric 1 +route $option -net 210.12.104.0/23 gw $cncgw metric 1 +route $option -net 210.12.110.0/23 gw $cncgw metric 1 +route $option -net 210.12.112.0/22 gw $cncgw metric 1 +route $option -net 210.12.116.0/23 gw $cncgw metric 1 +route $option -net 210.12.118.0/24 gw $cncgw metric 1 +route $option -net 210.12.120.0/23 gw $cncgw metric 1 +route $option -net 210.12.122.0/24 gw $cncgw metric 1 +route $option -net 210.12.124.0/22 gw $cncgw metric 1 +route $option -net 210.12.131.0/24 gw $cncgw metric 1 +route $option -net 210.12.132.0/22 gw $cncgw metric 1 +route $option -net 210.12.136.0/22 gw $cncgw metric 1 +route $option -net 210.12.142.0/23 gw $cncgw metric 1 +route $option -net 210.12.146.0/23 gw $cncgw metric 1 +route $option -net 210.12.148.0/22 gw $cncgw metric 1 +route $option -net 210.12.152.0/21 gw $cncgw metric 1 +route $option -net 210.12.160.0/21 gw $cncgw metric 1 +route $option -net 210.12.169.0/24 gw $cncgw metric 1 +route $option -net 210.12.170.0/23 gw $cncgw metric 1 +route $option -net 210.12.172.0/22 gw $cncgw metric 1 +route $option -net 210.12.176.0/23 gw $cncgw metric 1 +route $option -net 210.12.178.0/24 gw $cncgw metric 1 +route $option -net 210.12.180.0/22 gw $cncgw metric 1 +route $option -net 210.12.184.0/22 gw $cncgw metric 1 +route $option -net 210.12.189.0/24 gw $cncgw metric 1 +route $option -net 210.12.190.0/23 gw $cncgw metric 1 +route $option -net 210.12.193.0/24 gw $cncgw metric 1 +route $option -net 210.12.194.0/24 gw $cncgw metric 1 +route $option -net 210.12.196.0/23 gw $cncgw metric 1 +route $option -net 210.12.198.0/24 gw $cncgw metric 1 +route $option -net 210.12.200.0/21 gw $cncgw metric 1 +route $option -net 210.12.208.0/22 gw $cncgw metric 1 +route $option -net 210.12.212.0/23 gw $cncgw metric 1 +route $option -net 210.12.214.0/24 gw $cncgw metric 1 +route $option -net 210.12.216.0/23 gw $cncgw metric 1 +route $option -net 210.12.220.0/23 gw $cncgw metric 1 +route $option -net 210.12.223.0/24 gw $cncgw metric 1 +route $option -net 210.12.224.0/23 gw $cncgw metric 1 +route $option -net 210.12.234.0/24 gw $cncgw metric 1 +route $option -net 210.12.236.0/22 gw $cncgw metric 1 +route $option -net 210.12.240.0/21 gw $cncgw metric 1 +route $option -net 210.12.253.0/24 gw $cncgw metric 1 +route $option -net 210.12.254.128/25 gw $cncgw metric 1 +route $option -net 210.12.255.0/24 gw $cncgw metric 1 +route $option -net 210.13.0.0/17 gw $cncgw metric 1 +route $option -net 210.13.164.0/24 gw $cncgw metric 1 +route $option -net 210.13.192.0/19 gw $cncgw metric 1 +route $option -net 210.13.224.0/20 gw $cncgw metric 1 +route $option -net 210.13.241.0/24 gw $cncgw metric 1 +route $option -net 210.13.242.0/23 gw $cncgw metric 1 +route $option -net 210.13.246.0/24 gw $cncgw metric 1 +route $option -net 210.13.248.0/24 gw $cncgw metric 1 +route $option -net 210.13.250.0/23 gw $cncgw metric 1 +route $option -net 210.13.253.0/24 gw $cncgw metric 1 +route $option -net 210.13.254.0/24 gw $cncgw metric 1 +route $option -net 210.14.128.0/22 gw $cncgw metric 1 +route $option -net 210.14.165.0/24 gw $cncgw metric 1 +route $option -net 210.14.170.0/23 gw $cncgw metric 1 +route $option -net 210.14.172.0/22 gw $cncgw metric 1 +route $option -net 210.14.176.0/22 gw $cncgw metric 1 +route $option -net 210.14.180.0/24 gw $cncgw metric 1 +route $option -net 210.14.184.0/24 gw $cncgw metric 1 +route $option -net 210.14.186.0/23 gw $cncgw metric 1 +route $option -net 210.14.191.0/24 gw $cncgw metric 1 +route $option -net 210.14.192.0/24 gw $cncgw metric 1 +route $option -net 210.14.199.0/24 gw $cncgw metric 1 +route $option -net 210.14.200.0/23 gw $cncgw metric 1 +route $option -net 210.14.206.0/24 gw $cncgw metric 1 +route $option -net 210.14.208.0/22 gw $cncgw metric 1 +route $option -net 210.14.212.0/23 gw $cncgw metric 1 +route $option -net 210.14.217.0/24 gw $cncgw metric 1 +route $option -net 210.14.218.0/23 gw $cncgw metric 1 +route $option -net 210.14.220.0/22 gw $cncgw metric 1 +route $option -net 210.14.224.0/22 gw $cncgw metric 1 +route $option -net 210.14.228.0/23 gw $cncgw metric 1 +route $option -net 210.14.232.0/21 gw $cncgw metric 1 +route $option -net 210.14.240.0/22 gw $cncgw metric 1 +route $option -net 210.14.245.0/24 gw $cncgw metric 1 +route $option -net 210.14.248.0/24 gw $cncgw metric 1 +route $option -net 210.14.250.0/24 gw $cncgw metric 1 +route $option -net 210.14.252.0/24 gw $cncgw metric 1 +route $option -net 210.14.255.0/24 gw $cncgw metric 1 +route $option -net 210.15.0.0/21 gw $cncgw metric 1 +route $option -net 210.15.8.0/24 gw $cncgw metric 1 +route $option -net 210.15.11.0/24 gw $cncgw metric 1 +route $option -net 210.15.12.0/22 gw $cncgw metric 1 +route $option -net 210.15.16.0/20 gw $cncgw metric 1 +route $option -net 210.15.32.0/22 gw $cncgw metric 1 +route $option -net 210.15.36.0/23 gw $cncgw metric 1 +route $option -net 210.15.38.0/24 gw $cncgw metric 1 +route $option -net 210.15.40.0/21 gw $cncgw metric 1 +route $option -net 210.15.48.0/23 gw $cncgw metric 1 +route $option -net 210.15.51.0/24 gw $cncgw metric 1 +route $option -net 210.15.52.0/22 gw $cncgw metric 1 +route $option -net 210.15.56.0/21 gw $cncgw metric 1 +route $option -net 210.15.64.0/18 gw $cncgw metric 1 +route $option -net 210.15.144.0/24 gw $cncgw metric 1 +route $option -net 210.21.0.0/16 gw $cncgw metric 1 +route $option -net 210.22.0.0/19 gw $cncgw metric 1 +route $option -net 210.22.32.0/21 gw $cncgw metric 1 +route $option -net 210.22.40.0/22 gw $cncgw metric 1 +route $option -net 210.22.44.0/24 gw $cncgw metric 1 +route $option -net 210.22.48.0/20 gw $cncgw metric 1 +route $option -net 210.22.64.0/18 gw $cncgw metric 1 +route $option -net 210.22.128.0/18 gw $cncgw metric 1 +route $option -net 210.22.192.0/19 gw $cncgw metric 1 +route $option -net 210.22.224.0/20 gw $cncgw metric 1 +route $option -net 210.22.240.0/21 gw $cncgw metric 1 +route $option -net 210.22.248.0/22 gw $cncgw metric 1 +route $option -net 210.22.252.0/24 gw $cncgw metric 1 +route $option -net 210.22.254.0/23 gw $cncgw metric 1 +route $option -net 210.51.0.0/18 gw $cncgw metric 1 +route $option -net 210.51.66.0/23 gw $cncgw metric 1 +route $option -net 210.51.121.0/24 gw $cncgw metric 1 +route $option -net 210.51.130.0/24 gw $cncgw metric 1 +route $option -net 210.51.138.0/24 gw $cncgw metric 1 +route $option -net 210.51.160.0/19 gw $cncgw metric 1 +route $option -net 210.51.192.0/23 gw $cncgw metric 1 +route $option -net 210.51.194.0/24 gw $cncgw metric 1 +route $option -net 210.51.195.0/25 gw $cncgw metric 1 +route $option -net 210.51.195.128/26 gw $cncgw metric 1 +route $option -net 210.51.195.192/27 gw $cncgw metric 1 +route $option -net 210.51.195.224/28 gw $cncgw metric 1 +route $option -net 210.51.195.240/30 gw $cncgw metric 1 +route $option -net 210.51.195.248/29 gw $cncgw metric 1 +route $option -net 210.51.196.0/22 gw $cncgw metric 1 +route $option -net 210.51.200.0/21 gw $cncgw metric 1 +route $option -net 210.51.208.0/22 gw $cncgw metric 1 +route $option -net 210.51.212.0/23 gw $cncgw metric 1 +route $option -net 210.51.214.0/24 gw $cncgw metric 1 +route $option -net 210.51.215.0/25 gw $cncgw metric 1 +route $option -net 210.51.215.128/26 gw $cncgw metric 1 +route $option -net 210.51.224.0/25 gw $cncgw metric 1 +route $option -net 210.51.224.128/27 gw $cncgw metric 1 +route $option -net 210.51.224.224/27 gw $cncgw metric 1 +route $option -net 210.51.225.0/24 gw $cncgw metric 1 +route $option -net 210.51.226.0/24 gw $cncgw metric 1 +route $option -net 210.51.227.0/26 gw $cncgw metric 1 +route $option -net 210.51.227.96/27 gw $cncgw metric 1 +route $option -net 210.51.227.128/29 gw $cncgw metric 1 +route $option -net 210.51.228.0/23 gw $cncgw metric 1 +route $option -net 210.51.234.0/23 gw $cncgw metric 1 +route $option -net 210.51.238.0/24 gw $cncgw metric 1 +route $option -net 210.51.239.128/25 gw $cncgw metric 1 +route $option -net 210.51.240.0/25 gw $cncgw metric 1 +route $option -net 210.51.240.192/27 gw $cncgw metric 1 +route $option -net 210.51.240.240/28 gw $cncgw metric 1 +route $option -net 210.51.243.0/24 gw $cncgw metric 1 +route $option -net 210.51.244.128/25 gw $cncgw metric 1 +route $option -net 210.51.245.0/24 gw $cncgw metric 1 +route $option -net 210.51.246.0/23 gw $cncgw metric 1 +route $option -net 210.52.5.64/26 gw $cncgw metric 1 +route $option -net 210.52.5.128/25 gw $cncgw metric 1 +route $option -net 210.52.6.0/24 gw $cncgw metric 1 +route $option -net 210.52.8.0/24 gw $cncgw metric 1 +route $option -net 210.52.16.112/28 gw $cncgw metric 1 +route $option -net 210.52.17.0/24 gw $cncgw metric 1 +route $option -net 210.52.21.0/24 gw $cncgw metric 1 +route $option -net 210.52.22.0/24 gw $cncgw metric 1 +route $option -net 210.52.23.0/26 gw $cncgw metric 1 +route $option -net 210.52.42.160/27 gw $cncgw metric 1 +route $option -net 210.52.45.0/24 gw $cncgw metric 1 +route $option -net 210.52.46.0/23 gw $cncgw metric 1 +route $option -net 210.52.48.0/22 gw $cncgw metric 1 +route $option -net 210.52.52.0/24 gw $cncgw metric 1 +route $option -net 210.52.53.128/26 gw $cncgw metric 1 +route $option -net 210.52.56.128/25 gw $cncgw metric 1 +route $option -net 210.52.60.0/24 gw $cncgw metric 1 +route $option -net 210.52.64.0/23 gw $cncgw metric 1 +route $option -net 210.52.71.32/28 gw $cncgw metric 1 +route $option -net 210.52.71.56/29 gw $cncgw metric 1 +route $option -net 210.52.71.64/26 gw $cncgw metric 1 +route $option -net 210.52.71.224/28 gw $cncgw metric 1 +route $option -net 210.52.73.0/24 gw $cncgw metric 1 +route $option -net 210.52.75.0/29 gw $cncgw metric 1 +route $option -net 210.52.75.28/30 gw $cncgw metric 1 +route $option -net 210.52.75.32/27 gw $cncgw metric 1 +route $option -net 210.52.75.64/26 gw $cncgw metric 1 +route $option -net 210.52.75.128/25 gw $cncgw metric 1 +route $option -net 210.52.78.0/24 gw $cncgw metric 1 +route $option -net 210.52.79.0/25 gw $cncgw metric 1 +route $option -net 210.52.79.128/28 gw $cncgw metric 1 +route $option -net 210.52.79.144/29 gw $cncgw metric 1 +route $option -net 210.52.79.164/30 gw $cncgw metric 1 +route $option -net 210.52.79.168/29 gw $cncgw metric 1 +route $option -net 210.52.79.176/28 gw $cncgw metric 1 +route $option -net 210.52.79.192/26 gw $cncgw metric 1 +route $option -net 210.52.80.0/24 gw $cncgw metric 1 +route $option -net 210.52.83.0/24 gw $cncgw metric 1 +route $option -net 210.52.84.176/29 gw $cncgw metric 1 +route $option -net 210.52.85.128/26 gw $cncgw metric 1 +route $option -net 210.52.85.224/27 gw $cncgw metric 1 +route $option -net 210.52.86.0/23 gw $cncgw metric 1 +route $option -net 210.52.88.0/25 gw $cncgw metric 1 +route $option -net 210.52.88.192/26 gw $cncgw metric 1 +route $option -net 210.52.89.0/24 gw $cncgw metric 1 +route $option -net 210.52.90.0/23 gw $cncgw metric 1 +route $option -net 210.52.92.0/23 gw $cncgw metric 1 +route $option -net 210.52.94.0/25 gw $cncgw metric 1 +route $option -net 210.52.95.0/24 gw $cncgw metric 1 +route $option -net 210.52.96.0/23 gw $cncgw metric 1 +route $option -net 210.52.98.0/24 gw $cncgw metric 1 +route $option -net 210.52.100.0/24 gw $cncgw metric 1 +route $option -net 210.52.102.0/23 gw $cncgw metric 1 +route $option -net 210.52.104.0/24 gw $cncgw metric 1 +route $option -net 210.52.105.0/26 gw $cncgw metric 1 +route $option -net 210.52.105.128/25 gw $cncgw metric 1 +route $option -net 210.52.106.0/23 gw $cncgw metric 1 +route $option -net 210.52.108.0/23 gw $cncgw metric 1 +route $option -net 210.52.110.0/26 gw $cncgw metric 1 +route $option -net 210.52.126.0/23 gw $cncgw metric 1 +route $option -net 210.52.128.0/22 gw $cncgw metric 1 +route $option -net 210.52.132.0/23 gw $cncgw metric 1 +route $option -net 210.52.140.0/24 gw $cncgw metric 1 +route $option -net 210.52.148.48/28 gw $cncgw metric 1 +route $option -net 210.52.148.64/26 gw $cncgw metric 1 +route $option -net 210.52.148.128/25 gw $cncgw metric 1 +route $option -net 210.52.149.0/24 gw $cncgw metric 1 +route $option -net 210.52.150.0/23 gw $cncgw metric 1 +route $option -net 210.52.152.0/21 gw $cncgw metric 1 +route $option -net 210.52.160.0/22 gw $cncgw metric 1 +route $option -net 210.52.164.0/23 gw $cncgw metric 1 +route $option -net 210.52.168.0/21 gw $cncgw metric 1 +route $option -net 210.52.177.0/24 gw $cncgw metric 1 +route $option -net 210.52.178.0/23 gw $cncgw metric 1 +route $option -net 210.52.187.0/24 gw $cncgw metric 1 +route $option -net 210.52.190.0/23 gw $cncgw metric 1 +route $option -net 210.52.192.0/24 gw $cncgw metric 1 +route $option -net 210.52.194.0/23 gw $cncgw metric 1 +route $option -net 210.52.196.0/23 gw $cncgw metric 1 +route $option -net 210.52.198.0/24 gw $cncgw metric 1 +route $option -net 210.52.206.0/23 gw $cncgw metric 1 +route $option -net 210.52.208.0/20 gw $cncgw metric 1 +route $option -net 210.52.224.0/22 gw $cncgw metric 1 +route $option -net 210.52.228.0/24 gw $cncgw metric 1 +route $option -net 210.52.230.0/23 gw $cncgw metric 1 +route $option -net 210.52.232.0/23 gw $cncgw metric 1 +route $option -net 210.52.235.0/24 gw $cncgw metric 1 +route $option -net 210.52.237.0/24 gw $cncgw metric 1 +route $option -net 210.52.238.0/23 gw $cncgw metric 1 +route $option -net 210.52.240.0/24 gw $cncgw metric 1 +route $option -net 210.52.242.0/23 gw $cncgw metric 1 +route $option -net 210.52.244.0/23 gw $cncgw metric 1 +route $option -net 210.52.246.0/24 gw $cncgw metric 1 +route $option -net 210.52.248.0/23 gw $cncgw metric 1 +route $option -net 210.52.250.0/24 gw $cncgw metric 1 +route $option -net 210.52.252.0/24 gw $cncgw metric 1 +route $option -net 210.53.0.0/22 gw $cncgw metric 1 +route $option -net 210.53.4.0/23 gw $cncgw metric 1 +route $option -net 210.53.6.0/24 gw $cncgw metric 1 +route $option -net 210.53.8.0/23 gw $cncgw metric 1 +route $option -net 210.53.10.0/24 gw $cncgw metric 1 +route $option -net 210.53.18.0/24 gw $cncgw metric 1 +route $option -net 210.53.24.0/22 gw $cncgw metric 1 +route $option -net 210.53.30.0/23 gw $cncgw metric 1 +route $option -net 210.53.32.0/21 gw $cncgw metric 1 +route $option -net 210.53.40.0/22 gw $cncgw metric 1 +route $option -net 210.53.44.0/23 gw $cncgw metric 1 +route $option -net 210.53.47.0/24 gw $cncgw metric 1 +route $option -net 210.53.48.0/21 gw $cncgw metric 1 +route $option -net 210.53.56.0/23 gw $cncgw metric 1 +route $option -net 210.53.59.0/24 gw $cncgw metric 1 +route $option -net 210.53.60.0/23 gw $cncgw metric 1 +route $option -net 210.53.64.0/23 gw $cncgw metric 1 +route $option -net 210.53.66.0/24 gw $cncgw metric 1 +route $option -net 210.53.72.0/22 gw $cncgw metric 1 +route $option -net 210.53.76.0/24 gw $cncgw metric 1 +route $option -net 210.53.80.0/24 gw $cncgw metric 1 +route $option -net 210.53.84.0/24 gw $cncgw metric 1 +route $option -net 210.53.88.0/24 gw $cncgw metric 1 +route $option -net 210.53.97.0/24 gw $cncgw metric 1 +route $option -net 210.53.98.0/23 gw $cncgw metric 1 +route $option -net 210.53.105.0/24 gw $cncgw metric 1 +route $option -net 210.53.106.0/23 gw $cncgw metric 1 +route $option -net 210.53.108.0/22 gw $cncgw metric 1 +route $option -net 210.53.112.0/24 gw $cncgw metric 1 +route $option -net 210.53.115.0/24 gw $cncgw metric 1 +route $option -net 210.53.125.0/24 gw $cncgw metric 1 +route $option -net 210.53.126.0/23 gw $cncgw metric 1 +route $option -net 210.53.128.0/21 gw $cncgw metric 1 +route $option -net 210.53.136.0/22 gw $cncgw metric 1 +route $option -net 210.53.192.0/22 gw $cncgw metric 1 +route $option -net 210.53.200.0/24 gw $cncgw metric 1 +route $option -net 210.53.204.0/22 gw $cncgw metric 1 +route $option -net 210.53.208.0/20 gw $cncgw metric 1 +route $option -net 210.53.224.0/19 gw $cncgw metric 1 +route $option -net 210.56.192.0/19 gw $cncgw metric 1 +route $option -net 210.72.160.0/19 gw $cncgw metric 1 +route $option -net 210.72.192.0/19 gw $cncgw metric 1 +route $option -net 210.74.96.0/23 gw $cncgw metric 1 +route $option -net 210.74.98.0/24 gw $cncgw metric 1 +route $option -net 210.74.107.0/24 gw $cncgw metric 1 +route $option -net 210.74.108.0/22 gw $cncgw metric 1 +route $option -net 210.74.112.0/22 gw $cncgw metric 1 +route $option -net 210.74.128.0/19 gw $cncgw metric 1 +route $option -net 210.74.160.0/20 gw $cncgw metric 1 +route $option -net 210.74.176.0/23 gw $cncgw metric 1 +route $option -net 210.74.179.0/24 gw $cncgw metric 1 +route $option -net 210.74.180.0/22 gw $cncgw metric 1 +route $option -net 210.74.184.0/21 gw $cncgw metric 1 +route $option -net 210.77.176.0/20 gw $cncgw metric 1 +route $option -net 210.78.0.0/20 gw $cncgw metric 1 +route $option -net 210.78.17.0/24 gw $cncgw metric 1 +route $option -net 210.78.18.0/23 gw $cncgw metric 1 +route $option -net 210.78.20.0/22 gw $cncgw metric 1 +route $option -net 210.78.24.0/23 gw $cncgw metric 1 +route $option -net 210.78.26.0/24 gw $cncgw metric 1 +route $option -net 210.78.28.0/24 gw $cncgw metric 1 +route $option -net 210.78.148.0/22 gw $cncgw metric 1 +route $option -net 210.82.111.64/26 gw $cncgw metric 1 +route $option -net 210.82.111.128/25 gw $cncgw metric 1 +route $option -net 210.82.112.0/20 gw $cncgw metric 1 +route $option -net 210.82.128.0/21 gw $cncgw metric 1 +route $option -net 210.82.136.0/22 gw $cncgw metric 1 +route $option -net 210.82.140.0/23 gw $cncgw metric 1 +route $option -net 210.82.142.0/24 gw $cncgw metric 1 +route $option -net 210.82.144.0/20 gw $cncgw metric 1 +route $option -net 210.82.160.0/24 gw $cncgw metric 1 +route $option -net 210.82.163.0/24 gw $cncgw metric 1 +route $option -net 210.82.164.0/22 gw $cncgw metric 1 +route $option -net 210.82.168.0/21 gw $cncgw metric 1 +route $option -net 210.82.176.0/21 gw $cncgw metric 1 +route $option -net 210.82.184.0/22 gw $cncgw metric 1 +route $option -net 210.82.188.0/23 gw $cncgw metric 1 +route $option -net 210.82.191.0/24 gw $cncgw metric 1 +route $option -net 210.82.192.0/23 gw $cncgw metric 1 +route $option -net 210.82.195.0/24 gw $cncgw metric 1 +route $option -net 210.82.196.0/22 gw $cncgw metric 1 +route $option -net 210.82.200.0/21 gw $cncgw metric 1 +route $option -net 210.82.208.0/20 gw $cncgw metric 1 +route $option -net 210.82.224.0/22 gw $cncgw metric 1 +route $option -net 210.82.228.0/23 gw $cncgw metric 1 +route $option -net 210.82.231.0/24 gw $cncgw metric 1 +route $option -net 210.82.232.0/23 gw $cncgw metric 1 +route $option -net 210.82.235.0/24 gw $cncgw metric 1 +route $option -net 210.82.239.0/24 gw $cncgw metric 1 +route $option -net 210.82.240.0/21 gw $cncgw metric 1 +route $option -net 210.82.248.0/24 gw $cncgw metric 1 +route $option -net 210.82.250.0/24 gw $cncgw metric 1 +route $option -net 210.82.251.0/27 gw $cncgw metric 1 +route $option -net 210.82.251.64/27 gw $cncgw metric 1 +route $option -net 210.82.252.0/22 gw $cncgw metric 1 +route $option -net 210.83.0.0/19 gw $cncgw metric 1 +route $option -net 210.83.32.0/23 gw $cncgw metric 1 +route $option -net 210.83.48.0/22 gw $cncgw metric 1 +route $option -net 210.83.56.0/21 gw $cncgw metric 1 +route $option -net 210.83.64.0/18 gw $cncgw metric 1 +route $option -net 210.83.128.0/17 gw $cncgw metric 1 +route $option -net 210.185.200.0/22 gw $cncgw metric 1 +route $option -net 210.192.96.0/21 gw $cncgw metric 1 +route $option -net 210.192.112.0/20 gw $cncgw metric 1 +route $option -net 211.90.0.0/15 gw $cncgw metric 1 +route $option -net 211.92.0.0/18 gw $cncgw metric 1 +route $option -net 211.92.64.0/19 gw $cncgw metric 1 +route $option -net 211.92.96.0/21 gw $cncgw metric 1 +route $option -net 211.92.106.0/23 gw $cncgw metric 1 +route $option -net 211.92.108.0/22 gw $cncgw metric 1 +route $option -net 211.92.112.0/20 gw $cncgw metric 1 +route $option -net 211.92.128.0/17 gw $cncgw metric 1 +route $option -net 211.93.0.0/17 gw $cncgw metric 1 +route $option -net 211.93.128.0/20 gw $cncgw metric 1 +route $option -net 211.93.152.0/21 gw $cncgw metric 1 +route $option -net 211.93.160.0/21 gw $cncgw metric 1 +route $option -net 211.93.168.0/24 gw $cncgw metric 1 +route $option -net 211.93.172.0/22 gw $cncgw metric 1 +route $option -net 211.93.176.0/24 gw $cncgw metric 1 +route $option -net 211.93.180.0/23 gw $cncgw metric 1 +route $option -net 211.94.0.0/15 gw $cncgw metric 1 +route $option -net 211.96.0.0/15 gw $cncgw metric 1 +route $option -net 211.145.0.0/17 gw $cncgw metric 1 +route $option -net 211.156.0.0/19 gw $cncgw metric 1 +route $option -net 211.157.0.0/20 gw $cncgw metric 1 +route $option -net 211.157.19.0/24 gw $cncgw metric 1 +route $option -net 211.157.20.0/22 gw $cncgw metric 1 +route $option -net 211.157.24.0/21 gw $cncgw metric 1 +route $option -net 211.158.0.0/16 gw $cncgw metric 1 +route $option -net 211.159.80.0/20 gw $cncgw metric 1 +route $option -net 211.159.96.0/22 gw $cncgw metric 1 +route $option -net 211.159.100.0/23 gw $cncgw metric 1 +route $option -net 211.163.1.0/24 gw $cncgw metric 1 +route $option -net 211.163.2.0/24 gw $cncgw metric 1 +route $option -net 211.163.9.0/24 gw $cncgw metric 1 +route $option -net 211.163.11.0/24 gw $cncgw metric 1 +route $option -net 211.163.12.0/22 gw $cncgw metric 1 +route $option -net 211.163.17.0/24 gw $cncgw metric 1 +route $option -net 211.163.18.0/23 gw $cncgw metric 1 +route $option -net 211.163.25.0/24 gw $cncgw metric 1 +route $option -net 211.163.26.0/24 gw $cncgw metric 1 +route $option -net 211.163.29.0/24 gw $cncgw metric 1 +route $option -net 211.163.30.0/23 gw $cncgw metric 1 +route $option -net 211.163.32.0/22 gw $cncgw metric 1 +route $option -net 211.163.36.0/23 gw $cncgw metric 1 +route $option -net 211.163.39.0/24 gw $cncgw metric 1 +route $option -net 211.163.41.0/24 gw $cncgw metric 1 +route $option -net 211.163.42.0/23 gw $cncgw metric 1 +route $option -net 211.163.49.0/24 gw $cncgw metric 1 +route $option -net 211.163.50.0/23 gw $cncgw metric 1 +route $option -net 211.163.52.0/22 gw $cncgw metric 1 +route $option -net 211.163.56.0/24 gw $cncgw metric 1 +route $option -net 211.163.61.0/24 gw $cncgw metric 1 +route $option -net 211.163.65.0/24 gw $cncgw metric 1 +route $option -net 211.163.66.0/23 gw $cncgw metric 1 +route $option -net 211.163.68.0/22 gw $cncgw metric 1 +route $option -net 211.163.72.0/24 gw $cncgw metric 1 +route $option -net 211.163.80.0/23 gw $cncgw metric 1 +route $option -net 211.163.82.0/24 gw $cncgw metric 1 +route $option -net 211.163.89.0/24 gw $cncgw metric 1 +route $option -net 211.163.93.0/24 gw $cncgw metric 1 +route $option -net 211.163.94.0/24 gw $cncgw metric 1 +route $option -net 211.163.97.0/24 gw $cncgw metric 1 +route $option -net 211.163.98.0/23 gw $cncgw metric 1 +route $option -net 211.163.100.0/22 gw $cncgw metric 1 +route $option -net 211.163.104.0/23 gw $cncgw metric 1 +route $option -net 211.163.113.0/24 gw $cncgw metric 1 +route $option -net 211.163.114.0/23 gw $cncgw metric 1 +route $option -net 211.163.116.0/23 gw $cncgw metric 1 +route $option -net 211.163.118.0/24 gw $cncgw metric 1 +route $option -net 211.163.121.0/24 gw $cncgw metric 1 +route $option -net 211.163.122.0/23 gw $cncgw metric 1 +route $option -net 211.163.124.0/23 gw $cncgw metric 1 +route $option -net 211.163.128.0/24 gw $cncgw metric 1 +route $option -net 211.163.180.0/23 gw $cncgw metric 1 +route $option -net 211.163.188.0/24 gw $cncgw metric 1 +route $option -net 211.163.193.0/24 gw $cncgw metric 1 +route $option -net 211.163.194.0/24 gw $cncgw metric 1 +route $option -net 211.163.200.0/24 gw $cncgw metric 1 +route $option -net 211.163.242.0/24 gw $cncgw metric 1 +route $option -net 218.7.0.0/16 gw $cncgw metric 1 +route $option -net 218.8.0.0/14 gw $cncgw metric 1 +route $option -net 218.12.0.0/16 gw $cncgw metric 1 +route $option -net 218.21.128.0/17 gw $cncgw metric 1 +route $option -net 218.24.0.0/14 gw $cncgw metric 1 +route $option -net 218.28.0.0/15 gw $cncgw metric 1 +route $option -net 218.30.223.0/24 gw $cncgw metric 1 +route $option -net 218.30.253.0/24 gw $cncgw metric 1 +route $option -net 218.30.254.0/24 gw $cncgw metric 1 +route $option -net 218.56.0.0/14 gw $cncgw metric 1 +route $option -net 218.60.0.0/15 gw $cncgw metric 1 +route $option -net 218.62.0.0/17 gw $cncgw metric 1 +route $option -net 218.67.128.0/17 gw $cncgw metric 1 +route $option -net 218.68.0.0/15 gw $cncgw metric 1 +route $option -net 218.97.192.0/19 gw $cncgw metric 1 +route $option -net 218.104.0.0/16 gw $cncgw metric 1 +route $option -net 218.105.0.0/20 gw $cncgw metric 1 +route $option -net 218.105.128.0/24 gw $cncgw metric 1 +route $option -net 218.106.0.0/17 gw $cncgw metric 1 +route $option -net 218.106.128.0/21 gw $cncgw metric 1 +route $option -net 218.106.136.0/22 gw $cncgw metric 1 +route $option -net 218.106.144.0/20 gw $cncgw metric 1 +route $option -net 218.106.160.0/20 gw $cncgw metric 1 +route $option -net 218.106.176.0/22 gw $cncgw metric 1 +route $option -net 218.106.192.0/19 gw $cncgw metric 1 +route $option -net 218.106.240.0/20 gw $cncgw metric 1 +route $option -net 218.107.0.0/16 gw $cncgw metric 1 +route $option -net 218.108.0.0/15 gw $cncgw metric 1 +route $option -net 218.247.32.0/19 gw $cncgw metric 1 +route $option -net 219.82.0.0/16 gw $cncgw metric 1 +route $option -net 219.154.0.0/15 gw $cncgw metric 1 +route $option -net 219.156.0.0/15 gw $cncgw metric 1 +route $option -net 219.158.0.0/18 gw $cncgw metric 1 +route $option -net 219.158.64.0/22 gw $cncgw metric 1 +route $option -net 219.158.96.0/24 gw $cncgw metric 1 +route $option -net 219.158.128.0/17 gw $cncgw metric 1 +route $option -net 219.159.0.0/18 gw $cncgw metric 1 +route $option -net 219.235.96.0/19 gw $cncgw metric 1 +route $option -net 220.115.226.0/23 gw $cncgw metric 1 +route $option -net 220.154.128.0/17 gw $cncgw metric 1 +route $option -net 220.192.0.0/16 gw $cncgw metric 1 +route $option -net 220.193.0.0/17 gw $cncgw metric 1 +route $option -net 220.193.128.0/18 gw $cncgw metric 1 +route $option -net 220.193.192.0/19 gw $cncgw metric 1 +route $option -net 220.193.240.0/20 gw $cncgw metric 1 +route $option -net 220.194.0.0/15 gw $cncgw metric 1 +route $option -net 220.196.0.0/16 gw $cncgw metric 1 +route $option -net 220.197.0.0/17 gw $cncgw metric 1 +route $option -net 220.197.128.0/18 gw $cncgw metric 1 +route $option -net 220.197.192.0/19 gw $cncgw metric 1 +route $option -net 220.197.224.0/21 gw $cncgw metric 1 +route $option -net 220.198.0.0/15 gw $cncgw metric 1 +route $option -net 220.200.0.0/17 gw $cncgw metric 1 +route $option -net 220.200.128.0/20 gw $cncgw metric 1 +route $option -net 220.200.144.0/21 gw $cncgw metric 1 +route $option -net 220.200.160.0/19 gw $cncgw metric 1 +route $option -net 220.200.192.0/19 gw $cncgw metric 1 +route $option -net 220.200.240.0/20 gw $cncgw metric 1 +route $option -net 220.201.0.0/16 gw $cncgw metric 1 +route $option -net 220.202.0.0/16 gw $cncgw metric 1 +route $option -net 220.203.0.0/18 gw $cncgw metric 1 +route $option -net 220.203.218.0/23 gw $cncgw metric 1 +route $option -net 220.203.221.0/24 gw $cncgw metric 1 +route $option -net 220.203.222.0/23 gw $cncgw metric 1 +route $option -net 220.203.224.0/22 gw $cncgw metric 1 +route $option -net 220.203.228.0/23 gw $cncgw metric 1 +route $option -net 220.205.0.0/17 gw $cncgw metric 1 +route $option -net 220.205.128.0/18 gw $cncgw metric 1 +route $option -net 220.205.192.0/19 gw $cncgw metric 1 +route $option -net 220.205.224.0/21 gw $cncgw metric 1 +route $option -net 220.206.144.0/24 gw $cncgw metric 1 +route $option -net 220.206.161.0/24 gw $cncgw metric 1 +route $option -net 220.206.192.0/20 gw $cncgw metric 1 +route $option -net 220.206.211.0/24 gw $cncgw metric 1 +route $option -net 220.206.212.0/23 gw $cncgw metric 1 +route $option -net 220.206.216.0/24 gw $cncgw metric 1 +route $option -net 220.206.218.0/23 gw $cncgw metric 1 +route $option -net 220.206.220.0/23 gw $cncgw metric 1 +route $option -net 220.206.222.0/24 gw $cncgw metric 1 +route $option -net 220.206.225.0/24 gw $cncgw metric 1 +route $option -net 220.206.229.0/24 gw $cncgw metric 1 +route $option -net 220.206.231.0/24 gw $cncgw metric 1 +route $option -net 220.206.235.0/24 gw $cncgw metric 1 +route $option -net 220.206.236.0/22 gw $cncgw metric 1 +route $option -net 220.206.243.0/24 gw $cncgw metric 1 +route $option -net 220.206.244.0/23 gw $cncgw metric 1 +route $option -net 220.206.246.0/24 gw $cncgw metric 1 +route $option -net 220.206.248.0/23 gw $cncgw metric 1 +route $option -net 220.206.254.0/23 gw $cncgw metric 1 +route $option -net 220.207.0.0/17 gw $cncgw metric 1 +route $option -net 220.207.128.0/18 gw $cncgw metric 1 +route $option -net 220.207.192.0/19 gw $cncgw metric 1 +route $option -net 220.207.224.0/20 gw $cncgw metric 1 +route $option -net 220.207.240.0/21 gw $cncgw metric 1 +route $option -net 220.207.248.0/22 gw $cncgw metric 1 +route $option -net 220.207.252.0/23 gw $cncgw metric 1 +route $option -net 220.248.0.0/17 gw $cncgw metric 1 +route $option -net 220.248.128.0/18 gw $cncgw metric 1 +route $option -net 220.248.192.0/19 gw $cncgw metric 1 +route $option -net 220.248.224.0/22 gw $cncgw metric 1 +route $option -net 220.248.228.0/24 gw $cncgw metric 1 +route $option -net 220.248.229.0/27 gw $cncgw metric 1 +route $option -net 220.248.229.32/28 gw $cncgw metric 1 +route $option -net 220.248.229.56/29 gw $cncgw metric 1 +route $option -net 220.248.229.64/26 gw $cncgw metric 1 +route $option -net 220.248.229.128/25 gw $cncgw metric 1 +route $option -net 220.248.230.0/23 gw $cncgw metric 1 +route $option -net 220.248.232.0/21 gw $cncgw metric 1 +route $option -net 220.248.240.0/20 gw $cncgw metric 1 +route $option -net 220.249.0.0/16 gw $cncgw metric 1 +route $option -net 220.250.0.0/19 gw $cncgw metric 1 +route $option -net 220.250.32.0/21 gw $cncgw metric 1 +route $option -net 220.250.40.0/22 gw $cncgw metric 1 +route $option -net 220.250.48.0/20 gw $cncgw metric 1 +route $option -net 220.250.64.0/24 gw $cncgw metric 1 +route $option -net 221.0.0.0/13 gw $cncgw metric 1 +route $option -net 221.8.0.0/15 gw $cncgw metric 1 +route $option -net 221.10.0.0/16 gw $cncgw metric 1 +route $option -net 221.11.0.0/17 gw $cncgw metric 1 +route $option -net 221.11.128.0/19 gw $cncgw metric 1 +route $option -net 221.11.160.0/20 gw $cncgw metric 1 +route $option -net 221.11.176.0/21 gw $cncgw metric 1 +route $option -net 221.11.184.0/22 gw $cncgw metric 1 +route $option -net 221.11.188.0/23 gw $cncgw metric 1 +route $option -net 221.11.191.0/24 gw $cncgw metric 1 +route $option -net 221.11.192.0/18 gw $cncgw metric 1 +route $option -net 221.12.0.0/17 gw $cncgw metric 1 +route $option -net 221.12.128.0/18 gw $cncgw metric 1 +route $option -net 221.13.0.0/16 gw $cncgw metric 1 +route $option -net 221.14.0.0/15 gw $cncgw metric 1 +route $option -net 221.136.0.0/16 gw $cncgw metric 1 +route $option -net 221.181.144.0/21 gw $cncgw metric 1 +route $option -net 221.192.0.0/14 gw $cncgw metric 1 +route $option -net 221.196.0.0/15 gw $cncgw metric 1 +route $option -net 221.198.0.0/16 gw $cncgw metric 1 +route $option -net 221.199.0.0/17 gw $cncgw metric 1 +route $option -net 221.199.128.0/18 gw $cncgw metric 1 +route $option -net 221.199.192.0/20 gw $cncgw metric 1 +route $option -net 221.199.224.0/19 gw $cncgw metric 1 +route $option -net 221.200.0.0/13 gw $cncgw metric 1 +route $option -net 221.208.0.0/12 gw $cncgw metric 1 +route $option -net 221.238.238.0/24 gw $cncgw metric 1 +route $option -net 222.128.0.0/12 gw $cncgw metric 1 +route $option -net 222.160.0.0/14 gw $cncgw metric 1 +route $option -net 223.27.184.0/22 gw $cncgw metric 1 + +if [ -f /etc/rc.d/rc.local ]; then +rm -f /etc/linux_cnc_route.sh +sed '/linux_cnc_route/d' /etc/rc.d/rc.local > /etc/rc.d/rc.local.a +mv -f /etc/rc.d/rc.local.a /etc/rc.d/rc.local +chmod 755 /etc/rc.d/rc.local +else +rm -f /etc/linux_cnc_route.sh +sed '/linux_cnc_route/d' /etc/rc.local > /etc/rc.local.a +mv -f /etc/rc.local.a /etc/rc.local +chmod 755 /etc/rc.local +fi + + +elif [ "$option" = "add" ]; then +echo " +route $option -net 1.24.0.0/13 gw $cncgw metric 1 +route $option -net 1.56.0.0/13 gw $cncgw metric 1 +route $option -net 1.188.0.0/14 gw $cncgw metric 1 +route $option -net 14.204.0.0/15 gw $cncgw metric 1 +route $option -net 27.8.0.0/13 gw $cncgw metric 1 +route $option -net 27.36.0.0/14 gw $cncgw metric 1 +route $option -net 27.40.0.0/13 gw $cncgw metric 1 +route $option -net 27.98.224.0/19 gw $cncgw metric 1 +route $option -net 27.115.0.0/17 gw $cncgw metric 1 +route $option -net 27.131.220.0/22 gw $cncgw metric 1 +route $option -net 27.192.0.0/11 gw $cncgw metric 1 +route $option -net 36.32.0.0/14 gw $cncgw metric 1 +route $option -net 36.248.0.0/14 gw $cncgw metric 1 +route $option -net 39.64.0.0/11 gw $cncgw metric 1 +route $option -net 42.4.0.0/14 gw $cncgw metric 1 +route $option -net 42.48.0.0/15 gw $cncgw metric 1 +route $option -net 42.52.0.0/14 gw $cncgw metric 1 +route $option -net 42.56.0.0/14 gw $cncgw metric 1 +route $option -net 42.63.0.0/16 gw $cncgw metric 1 +route $option -net 42.84.0.0/14 gw $cncgw metric 1 +route $option -net 42.176.0.0/13 gw $cncgw metric 1 +route $option -net 42.224.0.0/12 gw $cncgw metric 1 +route $option -net 58.16.0.0/13 gw $cncgw metric 1 +route $option -net 58.67.32.0/19 gw $cncgw metric 1 +route $option -net 58.83.8.0/24 gw $cncgw metric 1 +route $option -net 58.83.32.0/19 gw $cncgw metric 1 +route $option -net 58.83.64.0/22 gw $cncgw metric 1 +route $option -net 58.100.0.0/16 gw $cncgw metric 1 +route $option -net 58.101.64.0/18 gw $cncgw metric 1 +route $option -net 58.101.128.0/18 gw $cncgw metric 1 +route $option -net 58.101.192.0/19 gw $cncgw metric 1 +route $option -net 58.101.224.0/20 gw $cncgw metric 1 +route $option -net 58.101.241.0/24 gw $cncgw metric 1 +route $option -net 58.101.242.0/23 gw $cncgw metric 1 +route $option -net 58.101.244.0/22 gw $cncgw metric 1 +route $option -net 58.101.248.0/21 gw $cncgw metric 1 +route $option -net 58.240.0.0/12 gw $cncgw metric 1 +route $option -net 59.191.80.0/20 gw $cncgw metric 1 +route $option -net 59.193.0.0/20 gw $cncgw metric 1 +route $option -net 60.0.0.0/11 gw $cncgw metric 1 +route $option -net 60.55.0.0/16 gw $cncgw metric 1 +route $option -net 60.208.0.0/12 gw $cncgw metric 1 +route $option -net 60.255.0.0/16 gw $cncgw metric 1 +route $option -net 61.4.64.0/20 gw $cncgw metric 1 +route $option -net 61.48.0.0/13 gw $cncgw metric 1 +route $option -net 61.133.0.0/17 gw $cncgw metric 1 +route $option -net 61.134.96.0/19 gw $cncgw metric 1 +route $option -net 61.134.128.0/17 gw $cncgw metric 1 +route $option -net 61.135.0.0/16 gw $cncgw metric 1 +route $option -net 61.136.0.0/17 gw $cncgw metric 1 +route $option -net 61.137.128.0/17 gw $cncgw metric 1 +route $option -net 61.138.0.0/17 gw $cncgw metric 1 +route $option -net 61.138.128.0/18 gw $cncgw metric 1 +route $option -net 61.139.128.0/18 gw $cncgw metric 1 +route $option -net 61.148.0.0/15 gw $cncgw metric 1 +route $option -net 61.156.0.0/16 gw $cncgw metric 1 +route $option -net 61.158.0.0/16 gw $cncgw metric 1 +route $option -net 61.159.0.0/18 gw $cncgw metric 1 +route $option -net 61.161.0.0/18 gw $cncgw metric 1 +route $option -net 61.161.128.0/17 gw $cncgw metric 1 +route $option -net 61.162.0.0/15 gw $cncgw metric 1 +route $option -net 61.167.0.0/16 gw $cncgw metric 1 +route $option -net 61.168.0.0/16 gw $cncgw metric 1 +route $option -net 61.176.0.0/16 gw $cncgw metric 1 +route $option -net 61.179.0.0/16 gw $cncgw metric 1 +route $option -net 61.180.128.0/17 gw $cncgw metric 1 +route $option -net 61.181.0.0/16 gw $cncgw metric 1 +route $option -net 61.182.0.0/16 gw $cncgw metric 1 +route $option -net 61.189.0.0/17 gw $cncgw metric 1 +route $option -net 61.237.97.200/30 gw $cncgw metric 1 +route $option -net 61.240.0.0/17 gw $cncgw metric 1 +route $option -net 61.240.128.0/18 gw $cncgw metric 1 +route $option -net 61.240.192.0/19 gw $cncgw metric 1 +route $option -net 61.240.224.0/20 gw $cncgw metric 1 +route $option -net 61.240.240.0/21 gw $cncgw metric 1 +route $option -net 61.241.0.0/16 gw $cncgw metric 1 +route $option -net 61.242.0.0/15 gw $cncgw metric 1 +route $option -net 101.16.0.0/12 gw $cncgw metric 1 +route $option -net 101.44.0.0/14 gw $cncgw metric 1 +route $option -net 101.64.0.0/13 gw $cncgw metric 1 +route $option -net 101.72.0.0/14 gw $cncgw metric 1 +route $option -net 101.204.0.0/14 gw $cncgw metric 1 +route $option -net 103.3.96.0/19 gw $cncgw metric 1 +route $option -net 103.3.132.0/22 gw $cncgw metric 1 +route $option -net 103.3.136.0/21 gw $cncgw metric 1 +route $option -net 103.3.148.0/22 gw $cncgw metric 1 +route $option -net 103.3.152.0/21 gw $cncgw metric 1 +route $option -net 103.22.188.0/22 gw $cncgw metric 1 +route $option -net 110.6.0.0/15 gw $cncgw metric 1 +route $option -net 110.16.0.0/14 gw $cncgw metric 1 +route $option -net 110.42.0.0/16 gw $cncgw metric 1 +route $option -net 110.51.0.0/16 gw $cncgw metric 1 +route $option -net 110.52.0.0/15 gw $cncgw metric 1 +route $option -net 110.72.0.0/15 gw $cncgw metric 1 +route $option -net 110.228.0.0/14 gw $cncgw metric 1 +route $option -net 110.240.0.0/12 gw $cncgw metric 1 +route $option -net 111.67.192.0/20 gw $cncgw metric 1 +route $option -net 111.85.0.0/16 gw $cncgw metric 1 +route $option -net 111.119.144.0/21 gw $cncgw metric 1 +route $option -net 111.160.0.0/13 gw $cncgw metric 1 +route $option -net 111.192.0.0/12 gw $cncgw metric 1 +route $option -net 111.228.1.0/24 gw $cncgw metric 1 +route $option -net 111.228.240.0/24 gw $cncgw metric 1 +route $option -net 112.64.0.0/15 gw $cncgw metric 1 +route $option -net 112.80.0.0/12 gw $cncgw metric 1 +route $option -net 112.96.0.0/15 gw $cncgw metric 1 +route $option -net 112.109.128.0/17 gw $cncgw metric 1 +route $option -net 112.111.0.0/16 gw $cncgw metric 1 +route $option -net 112.122.0.0/15 gw $cncgw metric 1 +route $option -net 112.132.0.0/16 gw $cncgw metric 1 +route $option -net 112.192.0.0/14 gw $cncgw metric 1 +route $option -net 112.224.0.0/11 gw $cncgw metric 1 +route $option -net 113.0.0.0/13 gw $cncgw metric 1 +route $option -net 113.8.0.0/15 gw $cncgw metric 1 +route $option -net 113.11.192.0/19 gw $cncgw metric 1 +route $option -net 113.31.32.0/20 gw $cncgw metric 1 +route $option -net 113.44.0.0/17 gw $cncgw metric 1 +route $option -net 113.56.0.0/15 gw $cncgw metric 1 +route $option -net 113.58.0.0/16 gw $cncgw metric 1 +route $option -net 113.59.0.0/17 gw $cncgw metric 1 +route $option -net 113.194.0.0/15 gw $cncgw metric 1 +route $option -net 113.200.0.0/15 gw $cncgw metric 1 +route $option -net 113.204.0.0/14 gw $cncgw metric 1 +route $option -net 113.213.0.0/18 gw $cncgw metric 1 +route $option -net 113.224.0.0/12 gw $cncgw metric 1 +route $option -net 114.28.192.0/18 gw $cncgw metric 1 +route $option -net 114.66.0.0/18 gw $cncgw metric 1 +route $option -net 114.111.160.0/20 gw $cncgw metric 1 +route $option -net 114.112.16.0/23 gw $cncgw metric 1 +route $option -net 114.112.28.0/23 gw $cncgw metric 1 +route $option -net 114.112.136.0/21 gw $cncgw metric 1 +route $option -net 114.112.144.0/20 gw $cncgw metric 1 +route $option -net 114.112.192.0/18 gw $cncgw metric 1 +route $option -net 114.113.208.0/23 gw $cncgw metric 1 +route $option -net 114.118.0.0/16 gw $cncgw metric 1 +route $option -net 114.132.128.0/17 gw $cncgw metric 1 +route $option -net 114.240.0.0/12 gw $cncgw metric 1 +route $option -net 115.46.0.0/15 gw $cncgw metric 1 +route $option -net 115.48.0.0/12 gw $cncgw metric 1 +route $option -net 115.85.192.0/18 gw $cncgw metric 1 +route $option -net 116.2.0.0/15 gw $cncgw metric 1 +route $option -net 116.60.240.0/21 gw $cncgw metric 1 +route $option -net 116.66.32.0/20 gw $cncgw metric 1 +route $option -net 116.90.80.0/20 gw $cncgw metric 1 +route $option -net 116.95.0.0/16 gw $cncgw metric 1 +route $option -net 116.112.0.0/14 gw $cncgw metric 1 +route $option -net 116.116.0.0/15 gw $cncgw metric 1 +route $option -net 116.128.0.0/19 gw $cncgw metric 1 +route $option -net 116.199.128.0/23 gw $cncgw metric 1 +route $option -net 116.199.135.0/24 gw $cncgw metric 1 +route $option -net 116.199.136.0/23 gw $cncgw metric 1 +route $option -net 116.199.138.0/24 gw $cncgw metric 1 +route $option -net 116.204.252.0/22 gw $cncgw metric 1 +route $option -net 116.213.64.0/18 gw $cncgw metric 1 +route $option -net 116.213.128.0/17 gw $cncgw metric 1 +route $option -net 116.216.240.0/22 gw $cncgw metric 1 +route $option -net 116.244.0.0/16 gw $cncgw metric 1 +route $option -net 117.8.0.0/13 gw $cncgw metric 1 +route $option -net 117.53.48.0/20 gw $cncgw metric 1 +route $option -net 117.74.64.0/20 gw $cncgw metric 1 +route $option -net 117.76.128.0/20 gw $cncgw metric 1 +route $option -net 117.76.252.0/24 gw $cncgw metric 1 +route $option -net 117.78.128.0/17 gw $cncgw metric 1 +route $option -net 117.79.0.0/18 gw $cncgw metric 1 +route $option -net 117.79.64.0/20 gw $cncgw metric 1 +route $option -net 117.79.136.0/21 gw $cncgw metric 1 +route $option -net 117.79.144.0/21 gw $cncgw metric 1 +route $option -net 117.79.240.0/21 gw $cncgw metric 1 +route $option -net 118.26.16.0/20 gw $cncgw metric 1 +route $option -net 118.26.128.0/18 gw $cncgw metric 1 +route $option -net 118.67.112.0/20 gw $cncgw metric 1 +route $option -net 118.72.0.0/13 gw $cncgw metric 1 +route $option -net 118.80.0.0/15 gw $cncgw metric 1 +route $option -net 118.89.0.0/16 gw $cncgw metric 1 +route $option -net 118.91.240.0/20 gw $cncgw metric 1 +route $option -net 118.126.7.0/24 gw $cncgw metric 1 +route $option -net 118.126.128.0/17 gw $cncgw metric 1 +route $option -net 118.185.0.0/17 gw $cncgw metric 1 +route $option -net 118.192.128.0/24 gw $cncgw metric 1 +route $option -net 118.193.240.0/21 gw $cncgw metric 1 +route $option -net 118.194.64.0/18 gw $cncgw metric 1 +route $option -net 118.194.128.0/21 gw $cncgw metric 1 +route $option -net 118.194.160.0/19 gw $cncgw metric 1 +route $option -net 118.194.232.0/21 gw $cncgw metric 1 +route $option -net 118.212.0.0/16 gw $cncgw metric 1 +route $option -net 118.224.0.0/18 gw $cncgw metric 1 +route $option -net 118.227.0.0/17 gw $cncgw metric 1 +route $option -net 118.242.32.0/21 gw $cncgw metric 1 +route $option -net 119.4.0.0/14 gw $cncgw metric 1 +route $option -net 119.9.0.0/17 gw $cncgw metric 1 +route $option -net 119.18.224.0/21 gw $cncgw metric 1 +route $option -net 119.19.128.0/17 gw $cncgw metric 1 +route $option -net 119.32.0.0/18 gw $cncgw metric 1 +route $option -net 119.32.64.0/19 gw $cncgw metric 1 +route $option -net 119.32.192.0/18 gw $cncgw metric 1 +route $option -net 119.36.0.0/16 gw $cncgw metric 1 +route $option -net 119.38.128.0/19 gw $cncgw metric 1 +route $option -net 119.38.160.0/20 gw $cncgw metric 1 +route $option -net 119.39.0.0/16 gw $cncgw metric 1 +route $option -net 119.48.0.0/13 gw $cncgw metric 1 +route $option -net 119.59.128.0/17 gw $cncgw metric 1 +route $option -net 119.62.0.0/16 gw $cncgw metric 1 +route $option -net 119.80.0.0/16 gw $cncgw metric 1 +route $option -net 119.81.0.0/17 gw $cncgw metric 1 +route $option -net 119.108.0.0/15 gw $cncgw metric 1 +route $option -net 119.112.0.0/13 gw $cncgw metric 1 +route $option -net 119.143.0.0/17 gw $cncgw metric 1 +route $option -net 119.143.128.0/19 gw $cncgw metric 1 +route $option -net 119.148.160.0/20 gw $cncgw metric 1 +route $option -net 119.161.128.0/17 gw $cncgw metric 1 +route $option -net 119.162.0.0/15 gw $cncgw metric 1 +route $option -net 119.164.0.0/14 gw $cncgw metric 1 +route $option -net 119.176.0.0/12 gw $cncgw metric 1 +route $option -net 119.248.0.0/14 gw $cncgw metric 1 +route $option -net 119.253.0.0/18 gw $cncgw metric 1 +route $option -net 119.253.128.0/17 gw $cncgw metric 1 +route $option -net 120.0.0.0/12 gw $cncgw metric 1 +route $option -net 120.31.0.0/18 gw $cncgw metric 1 +route $option -net 120.31.172.0/22 gw $cncgw metric 1 +route $option -net 120.31.176.0/20 gw $cncgw metric 1 +route $option -net 120.31.192.0/18 gw $cncgw metric 1 +route $option -net 120.64.48.0/20 gw $cncgw metric 1 +route $option -net 120.64.96.0/20 gw $cncgw metric 1 +route $option -net 120.64.112.0/21 gw $cncgw metric 1 +route $option -net 120.64.120.0/22 gw $cncgw metric 1 +route $option -net 120.65.130.0/23 gw $cncgw metric 1 +route $option -net 120.65.192.0/24 gw $cncgw metric 1 +route $option -net 120.65.250.0/24 gw $cncgw metric 1 +route $option -net 120.65.254.0/24 gw $cncgw metric 1 +route $option -net 120.67.127.0/24 gw $cncgw metric 1 +route $option -net 120.67.128.0/17 gw $cncgw metric 1 +route $option -net 120.80.0.0/13 gw $cncgw metric 1 +route $option -net 120.128.192.0/22 gw $cncgw metric 1 +route $option -net 120.128.196.0/23 gw $cncgw metric 1 +route $option -net 120.128.200.0/21 gw $cncgw metric 1 +route $option -net 120.128.212.0/22 gw $cncgw metric 1 +route $option -net 120.128.216.0/23 gw $cncgw metric 1 +route $option -net 120.137.0.0/20 gw $cncgw metric 1 +route $option -net 120.137.64.0/18 gw $cncgw metric 1 +route $option -net 121.16.0.0/12 gw $cncgw metric 1 +route $option -net 121.36.24.0/21 gw $cncgw metric 1 +route $option -net 121.36.80.0/20 gw $cncgw metric 1 +route $option -net 121.36.160.0/20 gw $cncgw metric 1 +route $option -net 121.36.184.0/23 gw $cncgw metric 1 +route $option -net 121.36.191.0/24 gw $cncgw metric 1 +route $option -net 121.40.216.0/24 gw $cncgw metric 1 +route $option -net 121.40.220.0/24 gw $cncgw metric 1 +route $option -net 121.40.223.0/24 gw $cncgw metric 1 +route $option -net 121.40.240.0/20 gw $cncgw metric 1 +route $option -net 121.55.0.0/18 gw $cncgw metric 1 +route $option -net 121.70.64.0/20 gw $cncgw metric 1 +route $option -net 121.101.208.0/20 gw $cncgw metric 1 +route $option -net 121.196.0.0/15 gw $cncgw metric 1 +route $option -net 122.9.240.0/21 gw $cncgw metric 1 +route $option -net 122.11.48.0/20 gw $cncgw metric 1 +route $option -net 122.12.0.0/20 gw $cncgw metric 1 +route $option -net 122.14.195.0/24 gw $cncgw metric 1 +route $option -net 122.15.16.0/20 gw $cncgw metric 1 +route $option -net 122.96.0.0/15 gw $cncgw metric 1 +route $option -net 122.112.128.0/19 gw $cncgw metric 1 +route $option -net 122.113.0.0/19 gw $cncgw metric 1 +route $option -net 122.136.0.0/13 gw $cncgw metric 1 +route $option -net 122.156.0.0/14 gw $cncgw metric 1 +route $option -net 122.188.0.0/14 gw $cncgw metric 1 +route $option -net 122.192.0.0/14 gw $cncgw metric 1 +route $option -net 122.198.128.0/21 gw $cncgw metric 1 +route $option -net 123.4.0.0/14 gw $cncgw metric 1 +route $option -net 123.8.0.0/13 gw $cncgw metric 1 +route $option -net 123.49.192.0/21 gw $cncgw metric 1 +route $option -net 123.49.224.0/21 gw $cncgw metric 1 +route $option -net 123.56.32.0/19 gw $cncgw metric 1 +route $option -net 123.56.64.0/24 gw $cncgw metric 1 +route $option -net 123.56.92.0/22 gw $cncgw metric 1 +route $option -net 123.57.0.0/22 gw $cncgw metric 1 +route $option -net 123.57.8.0/21 gw $cncgw metric 1 +route $option -net 123.57.16.0/21 gw $cncgw metric 1 +route $option -net 123.57.24.0/22 gw $cncgw metric 1 +route $option -net 123.57.64.0/18 gw $cncgw metric 1 +route $option -net 123.112.0.0/12 gw $cncgw metric 1 +route $option -net 123.128.0.0/13 gw $cncgw metric 1 +route $option -net 123.138.0.0/15 gw $cncgw metric 1 +route $option -net 123.144.0.0/14 gw $cncgw metric 1 +route $option -net 123.148.0.0/16 gw $cncgw metric 1 +route $option -net 123.151.96.0/20 gw $cncgw metric 1 +route $option -net 123.152.0.0/13 gw $cncgw metric 1 +route $option -net 123.188.0.0/14 gw $cncgw metric 1 +route $option -net 123.232.0.0/14 gw $cncgw metric 1 +route $option -net 123.242.0.0/18 gw $cncgw metric 1 +route $option -net 123.242.64.0/20 gw $cncgw metric 1 +route $option -net 123.242.80.0/21 gw $cncgw metric 1 +route $option -net 123.253.132.0/22 gw $cncgw metric 1 +route $option -net 124.20.64.0/19 gw $cncgw metric 1 +route $option -net 124.20.112.0/20 gw $cncgw metric 1 +route $option -net 124.20.128.0/19 gw $cncgw metric 1 +route $option -net 124.20.160.0/22 gw $cncgw metric 1 +route $option -net 124.20.164.0/23 gw $cncgw metric 1 +route $option -net 124.20.176.0/20 gw $cncgw metric 1 +route $option -net 124.20.192.0/18 gw $cncgw metric 1 +route $option -net 124.21.0.0/17 gw $cncgw metric 1 +route $option -net 124.21.128.0/18 gw $cncgw metric 1 +route $option -net 124.42.128.0/17 gw $cncgw metric 1 +route $option -net 124.64.0.0/15 gw $cncgw metric 1 +route $option -net 124.66.0.0/17 gw $cncgw metric 1 +route $option -net 124.67.0.0/16 gw $cncgw metric 1 +route $option -net 124.71.128.0/19 gw $cncgw metric 1 +route $option -net 124.71.160.0/20 gw $cncgw metric 1 +route $option -net 124.71.176.0/21 gw $cncgw metric 1 +route $option -net 124.71.188.0/22 gw $cncgw metric 1 +route $option -net 124.88.0.0/13 gw $cncgw metric 1 +route $option -net 124.128.0.0/13 gw $cncgw metric 1 +route $option -net 124.152.0.0/16 gw $cncgw metric 1 +route $option -net 124.160.0.0/13 gw $cncgw metric 1 +route $option -net 124.172.168.0/24 gw $cncgw metric 1 +route $option -net 124.240.128.0/18 gw $cncgw metric 1 +route $option -net 125.32.0.0/14 gw $cncgw metric 1 +route $option -net 125.36.0.0/15 gw $cncgw metric 1 +route $option -net 125.38.0.0/16 gw $cncgw metric 1 +route $option -net 125.39.0.0/18 gw $cncgw metric 1 +route $option -net 125.39.64.0/19 gw $cncgw metric 1 +route $option -net 125.39.96.0/21 gw $cncgw metric 1 +route $option -net 125.39.104.0/22 gw $cncgw metric 1 +route $option -net 125.39.112.0/20 gw $cncgw metric 1 +route $option -net 125.39.128.0/17 gw $cncgw metric 1 +route $option -net 125.40.0.0/13 gw $cncgw metric 1 +route $option -net 125.61.128.0/17 gw $cncgw metric 1 +route $option -net 125.171.137.0/24 gw $cncgw metric 1 +route $option -net 125.211.0.0/16 gw $cncgw metric 1 +route $option -net 139.208.0.0/13 gw $cncgw metric 1 +route $option -net 139.226.0.0/15 gw $cncgw metric 1 +route $option -net 140.206.0.0/15 gw $cncgw metric 1 +route $option -net 150.255.0.0/16 gw $cncgw metric 1 +route $option -net 153.0.0.0/16 gw $cncgw metric 1 +route $option -net 153.3.0.0/16 gw $cncgw metric 1 +route $option -net 153.34.0.0/15 gw $cncgw metric 1 +route $option -net 153.36.0.0/15 gw $cncgw metric 1 +route $option -net 153.99.0.0/16 gw $cncgw metric 1 +route $option -net 153.101.0.0/16 gw $cncgw metric 1 +route $option -net 153.118.0.0/15 gw $cncgw metric 1 +route $option -net 157.0.0.0/16 gw $cncgw metric 1 +route $option -net 157.18.0.0/16 gw $cncgw metric 1 +route $option -net 157.61.0.0/16 gw $cncgw metric 1 +route $option -net 157.122.0.0/16 gw $cncgw metric 1 +route $option -net 157.148.0.0/16 gw $cncgw metric 1 +route $option -net 157.156.0.0/16 gw $cncgw metric 1 +route $option -net 157.255.0.0/16 gw $cncgw metric 1 +route $option -net 163.0.0.0/16 gw $cncgw metric 1 +route $option -net 163.125.0.0/16 gw $cncgw metric 1 +route $option -net 163.142.0.0/16 gw $cncgw metric 1 +route $option -net 163.177.0.0/16 gw $cncgw metric 1 +route $option -net 163.179.0.0/16 gw $cncgw metric 1 +route $option -net 163.204.0.0/16 gw $cncgw metric 1 +route $option -net 171.34.0.0/15 gw $cncgw metric 1 +route $option -net 171.36.0.0/14 gw $cncgw metric 1 +route $option -net 175.16.0.0/13 gw $cncgw metric 1 +route $option -net 175.42.0.0/15 gw $cncgw metric 1 +route $option -net 175.44.0.0/16 gw $cncgw metric 1 +route $option -net 175.106.128.0/17 gw $cncgw metric 1 +route $option -net 175.146.0.0/15 gw $cncgw metric 1 +route $option -net 175.148.0.0/14 gw $cncgw metric 1 +route $option -net 175.152.0.0/14 gw $cncgw metric 1 +route $option -net 175.160.0.0/12 gw $cncgw metric 1 +route $option -net 175.184.128.0/18 gw $cncgw metric 1 +route $option -net 180.76.0.0/16 gw $cncgw metric 1 +route $option -net 180.95.128.0/17 gw $cncgw metric 1 +route $option -net 180.129.128.0/17 gw $cncgw metric 1 +route $option -net 180.130.0.0/16 gw $cncgw metric 1 +route $option -net 180.184.0.0/16 gw $cncgw metric 1 +route $option -net 180.189.149.0/24 gw $cncgw metric 1 +route $option -net 180.189.150.0/23 gw $cncgw metric 1 +route $option -net 180.223.0.0/17 gw $cncgw metric 1 +route $option -net 182.18.0.0/17 gw $cncgw metric 1 +route $option -net 182.48.96.0/19 gw $cncgw metric 1 +route $option -net 182.54.0.0/17 gw $cncgw metric 1 +route $option -net 182.61.130.0/24 gw $cncgw metric 1 +route $option -net 182.88.0.0/14 gw $cncgw metric 1 +route $option -net 182.112.0.0/12 gw $cncgw metric 1 +route $option -net 182.236.160.0/20 gw $cncgw metric 1 +route $option -net 182.236.188.0/22 gw $cncgw metric 1 +route $option -net 183.81.180.0/22 gw $cncgw metric 1 +route $option -net 183.92.0.0/14 gw $cncgw metric 1 +route $option -net 183.184.0.0/13 gw $cncgw metric 1 +route $option -net 202.4.252.0/22 gw $cncgw metric 1 +route $option -net 202.63.248.0/22 gw $cncgw metric 1 +route $option -net 202.92.0.0/22 gw $cncgw metric 1 +route $option -net 202.96.0.0/18 gw $cncgw metric 1 +route $option -net 202.96.64.0/19 gw $cncgw metric 1 +route $option -net 202.97.110.0/24 gw $cncgw metric 1 +route $option -net 202.97.128.0/17 gw $cncgw metric 1 +route $option -net 202.98.0.0/19 gw $cncgw metric 1 +route $option -net 202.99.0.0/21 gw $cncgw metric 1 +route $option -net 202.99.9.0/24 gw $cncgw metric 1 +route $option -net 202.99.10.0/24 gw $cncgw metric 1 +route $option -net 202.99.25.0/24 gw $cncgw metric 1 +route $option -net 202.99.64.0/18 gw $cncgw metric 1 +route $option -net 202.99.128.0/17 gw $cncgw metric 1 +route $option -net 202.102.128.0/18 gw $cncgw metric 1 +route $option -net 202.102.224.0/19 gw $cncgw metric 1 +route $option -net 202.106.0.0/17 gw $cncgw metric 1 +route $option -net 202.106.128.0/19 gw $cncgw metric 1 +route $option -net 202.106.160.0/20 gw $cncgw metric 1 +route $option -net 202.106.176.0/21 gw $cncgw metric 1 +route $option -net 202.106.184.0/23 gw $cncgw metric 1 +route $option -net 202.106.186.0/24 gw $cncgw metric 1 +route $option -net 202.106.188.0/22 gw $cncgw metric 1 +route $option -net 202.106.192.0/18 gw $cncgw metric 1 +route $option -net 202.107.0.0/17 gw $cncgw metric 1 +route $option -net 202.108.0.0/24 gw $cncgw metric 1 +route $option -net 202.108.1.64/26 gw $cncgw metric 1 +route $option -net 202.108.1.128/25 gw $cncgw metric 1 +route $option -net 202.108.2.0/23 gw $cncgw metric 1 +route $option -net 202.108.4.0/22 gw $cncgw metric 1 +route $option -net 202.108.8.0/21 gw $cncgw metric 1 +route $option -net 202.108.16.0/20 gw $cncgw metric 1 +route $option -net 202.108.32.0/19 gw $cncgw metric 1 +route $option -net 202.108.64.0/18 gw $cncgw metric 1 +route $option -net 202.108.128.0/18 gw $cncgw metric 1 +route $option -net 202.108.192.0/19 gw $cncgw metric 1 +route $option -net 202.108.224.0/20 gw $cncgw metric 1 +route $option -net 202.108.240.0/21 gw $cncgw metric 1 +route $option -net 202.108.248.0/24 gw $cncgw metric 1 +route $option -net 202.108.251.0/24 gw $cncgw metric 1 +route $option -net 202.108.252.0/22 gw $cncgw metric 1 +route $option -net 202.110.0.0/17 gw $cncgw metric 1 +route $option -net 202.110.192.0/18 gw $cncgw metric 1 +route $option -net 202.111.128.0/18 gw $cncgw metric 1 +route $option -net 202.130.247.0/24 gw $cncgw metric 1 +route $option -net 202.152.176.0/20 gw $cncgw metric 1 +route $option -net 203.92.160.0/19 gw $cncgw metric 1 +route $option -net 203.93.64.0/20 gw $cncgw metric 1 +route $option -net 203.93.94.0/24 gw $cncgw metric 1 +route $option -net 203.93.96.0/24 gw $cncgw metric 1 +route $option -net 203.93.104.0/21 gw $cncgw metric 1 +route $option -net 203.93.112.0/23 gw $cncgw metric 1 +route $option -net 203.93.114.0/24 gw $cncgw metric 1 +route $option -net 203.93.116.0/24 gw $cncgw metric 1 +route $option -net 203.93.120.0/23 gw $cncgw metric 1 +route $option -net 203.93.122.0/24 gw $cncgw metric 1 +route $option -net 203.93.130.0/23 gw $cncgw metric 1 +route $option -net 203.93.145.0/24 gw $cncgw metric 1 +route $option -net 203.93.153.0/24 gw $cncgw metric 1 +route $option -net 203.93.166.0/23 gw $cncgw metric 1 +route $option -net 203.93.169.0/24 gw $cncgw metric 1 +route $option -net 203.93.170.0/24 gw $cncgw metric 1 +route $option -net 203.93.172.0/22 gw $cncgw metric 1 +route $option -net 203.93.177.0/24 gw $cncgw metric 1 +route $option -net 203.93.179.128/25 gw $cncgw metric 1 +route $option -net 203.93.180.0/23 gw $cncgw metric 1 +route $option -net 203.93.182.128/25 gw $cncgw metric 1 +route $option -net 203.93.184.0/23 gw $cncgw metric 1 +route $option -net 203.93.186.0/24 gw $cncgw metric 1 +route $option -net 203.93.187.0/25 gw $cncgw metric 1 +route $option -net 203.93.188.0/25 gw $cncgw metric 1 +route $option -net 203.93.189.0/24 gw $cncgw metric 1 +route $option -net 203.93.191.0/24 gw $cncgw metric 1 +route $option -net 203.93.193.0/24 gw $cncgw metric 1 +route $option -net 203.93.194.0/24 gw $cncgw metric 1 +route $option -net 203.93.196.0/24 gw $cncgw metric 1 +route $option -net 203.93.198.0/23 gw $cncgw metric 1 +route $option -net 203.93.200.0/23 gw $cncgw metric 1 +route $option -net 203.93.204.0/24 gw $cncgw metric 1 +route $option -net 203.93.208.0/20 gw $cncgw metric 1 +route $option -net 203.93.234.0/23 gw $cncgw metric 1 +route $option -net 203.93.236.0/22 gw $cncgw metric 1 +route $option -net 203.93.240.0/20 gw $cncgw metric 1 +route $option -net 203.135.160.0/20 gw $cncgw metric 1 +route $option -net 203.175.192.0/18 gw $cncgw metric 1 +route $option -net 210.2.0.0/22 gw $cncgw metric 1 +route $option -net 210.2.24.0/21 gw $cncgw metric 1 +route $option -net 210.5.142.192/26 gw $cncgw metric 1 +route $option -net 210.5.143.0/24 gw $cncgw metric 1 +route $option -net 210.12.0.0/19 gw $cncgw metric 1 +route $option -net 210.12.32.0/21 gw $cncgw metric 1 +route $option -net 210.12.40.0/22 gw $cncgw metric 1 +route $option -net 210.12.44.0/23 gw $cncgw metric 1 +route $option -net 210.12.47.0/24 gw $cncgw metric 1 +route $option -net 210.12.48.0/22 gw $cncgw metric 1 +route $option -net 210.12.52.0/23 gw $cncgw metric 1 +route $option -net 210.12.54.0/24 gw $cncgw metric 1 +route $option -net 210.12.56.0/21 gw $cncgw metric 1 +route $option -net 210.12.64.0/23 gw $cncgw metric 1 +route $option -net 210.12.66.0/24 gw $cncgw metric 1 +route $option -net 210.12.69.0/24 gw $cncgw metric 1 +route $option -net 210.12.70.0/23 gw $cncgw metric 1 +route $option -net 210.12.73.0/24 gw $cncgw metric 1 +route $option -net 210.12.74.0/23 gw $cncgw metric 1 +route $option -net 210.12.76.0/22 gw $cncgw metric 1 +route $option -net 210.12.80.0/20 gw $cncgw metric 1 +route $option -net 210.12.96.0/21 gw $cncgw metric 1 +route $option -net 210.12.104.0/23 gw $cncgw metric 1 +route $option -net 210.12.110.0/23 gw $cncgw metric 1 +route $option -net 210.12.112.0/22 gw $cncgw metric 1 +route $option -net 210.12.116.0/23 gw $cncgw metric 1 +route $option -net 210.12.118.0/24 gw $cncgw metric 1 +route $option -net 210.12.120.0/23 gw $cncgw metric 1 +route $option -net 210.12.122.0/24 gw $cncgw metric 1 +route $option -net 210.12.124.0/22 gw $cncgw metric 1 +route $option -net 210.12.131.0/24 gw $cncgw metric 1 +route $option -net 210.12.132.0/22 gw $cncgw metric 1 +route $option -net 210.12.136.0/22 gw $cncgw metric 1 +route $option -net 210.12.142.0/23 gw $cncgw metric 1 +route $option -net 210.12.146.0/23 gw $cncgw metric 1 +route $option -net 210.12.148.0/22 gw $cncgw metric 1 +route $option -net 210.12.152.0/21 gw $cncgw metric 1 +route $option -net 210.12.160.0/21 gw $cncgw metric 1 +route $option -net 210.12.169.0/24 gw $cncgw metric 1 +route $option -net 210.12.170.0/23 gw $cncgw metric 1 +route $option -net 210.12.172.0/22 gw $cncgw metric 1 +route $option -net 210.12.176.0/23 gw $cncgw metric 1 +route $option -net 210.12.178.0/24 gw $cncgw metric 1 +route $option -net 210.12.180.0/22 gw $cncgw metric 1 +route $option -net 210.12.184.0/22 gw $cncgw metric 1 +route $option -net 210.12.189.0/24 gw $cncgw metric 1 +route $option -net 210.12.190.0/23 gw $cncgw metric 1 +route $option -net 210.12.193.0/24 gw $cncgw metric 1 +route $option -net 210.12.194.0/24 gw $cncgw metric 1 +route $option -net 210.12.196.0/23 gw $cncgw metric 1 +route $option -net 210.12.198.0/24 gw $cncgw metric 1 +route $option -net 210.12.200.0/21 gw $cncgw metric 1 +route $option -net 210.12.208.0/22 gw $cncgw metric 1 +route $option -net 210.12.212.0/23 gw $cncgw metric 1 +route $option -net 210.12.214.0/24 gw $cncgw metric 1 +route $option -net 210.12.216.0/23 gw $cncgw metric 1 +route $option -net 210.12.220.0/23 gw $cncgw metric 1 +route $option -net 210.12.223.0/24 gw $cncgw metric 1 +route $option -net 210.12.224.0/23 gw $cncgw metric 1 +route $option -net 210.12.234.0/24 gw $cncgw metric 1 +route $option -net 210.12.236.0/22 gw $cncgw metric 1 +route $option -net 210.12.240.0/21 gw $cncgw metric 1 +route $option -net 210.12.253.0/24 gw $cncgw metric 1 +route $option -net 210.12.254.128/25 gw $cncgw metric 1 +route $option -net 210.12.255.0/24 gw $cncgw metric 1 +route $option -net 210.13.0.0/17 gw $cncgw metric 1 +route $option -net 210.13.164.0/24 gw $cncgw metric 1 +route $option -net 210.13.192.0/19 gw $cncgw metric 1 +route $option -net 210.13.224.0/20 gw $cncgw metric 1 +route $option -net 210.13.241.0/24 gw $cncgw metric 1 +route $option -net 210.13.242.0/23 gw $cncgw metric 1 +route $option -net 210.13.246.0/24 gw $cncgw metric 1 +route $option -net 210.13.248.0/24 gw $cncgw metric 1 +route $option -net 210.13.250.0/23 gw $cncgw metric 1 +route $option -net 210.13.253.0/24 gw $cncgw metric 1 +route $option -net 210.13.254.0/24 gw $cncgw metric 1 +route $option -net 210.14.128.0/22 gw $cncgw metric 1 +route $option -net 210.14.165.0/24 gw $cncgw metric 1 +route $option -net 210.14.170.0/23 gw $cncgw metric 1 +route $option -net 210.14.172.0/22 gw $cncgw metric 1 +route $option -net 210.14.176.0/22 gw $cncgw metric 1 +route $option -net 210.14.180.0/24 gw $cncgw metric 1 +route $option -net 210.14.184.0/24 gw $cncgw metric 1 +route $option -net 210.14.186.0/23 gw $cncgw metric 1 +route $option -net 210.14.191.0/24 gw $cncgw metric 1 +route $option -net 210.14.192.0/24 gw $cncgw metric 1 +route $option -net 210.14.199.0/24 gw $cncgw metric 1 +route $option -net 210.14.200.0/23 gw $cncgw metric 1 +route $option -net 210.14.206.0/24 gw $cncgw metric 1 +route $option -net 210.14.208.0/22 gw $cncgw metric 1 +route $option -net 210.14.212.0/23 gw $cncgw metric 1 +route $option -net 210.14.217.0/24 gw $cncgw metric 1 +route $option -net 210.14.218.0/23 gw $cncgw metric 1 +route $option -net 210.14.220.0/22 gw $cncgw metric 1 +route $option -net 210.14.224.0/22 gw $cncgw metric 1 +route $option -net 210.14.228.0/23 gw $cncgw metric 1 +route $option -net 210.14.232.0/21 gw $cncgw metric 1 +route $option -net 210.14.240.0/22 gw $cncgw metric 1 +route $option -net 210.14.245.0/24 gw $cncgw metric 1 +route $option -net 210.14.248.0/24 gw $cncgw metric 1 +route $option -net 210.14.250.0/24 gw $cncgw metric 1 +route $option -net 210.14.252.0/24 gw $cncgw metric 1 +route $option -net 210.14.255.0/24 gw $cncgw metric 1 +route $option -net 210.15.0.0/21 gw $cncgw metric 1 +route $option -net 210.15.8.0/24 gw $cncgw metric 1 +route $option -net 210.15.11.0/24 gw $cncgw metric 1 +route $option -net 210.15.12.0/22 gw $cncgw metric 1 +route $option -net 210.15.16.0/20 gw $cncgw metric 1 +route $option -net 210.15.32.0/22 gw $cncgw metric 1 +route $option -net 210.15.36.0/23 gw $cncgw metric 1 +route $option -net 210.15.38.0/24 gw $cncgw metric 1 +route $option -net 210.15.40.0/21 gw $cncgw metric 1 +route $option -net 210.15.48.0/23 gw $cncgw metric 1 +route $option -net 210.15.51.0/24 gw $cncgw metric 1 +route $option -net 210.15.52.0/22 gw $cncgw metric 1 +route $option -net 210.15.56.0/21 gw $cncgw metric 1 +route $option -net 210.15.64.0/18 gw $cncgw metric 1 +route $option -net 210.15.144.0/24 gw $cncgw metric 1 +route $option -net 210.21.0.0/16 gw $cncgw metric 1 +route $option -net 210.22.0.0/19 gw $cncgw metric 1 +route $option -net 210.22.32.0/21 gw $cncgw metric 1 +route $option -net 210.22.40.0/22 gw $cncgw metric 1 +route $option -net 210.22.44.0/24 gw $cncgw metric 1 +route $option -net 210.22.48.0/20 gw $cncgw metric 1 +route $option -net 210.22.64.0/18 gw $cncgw metric 1 +route $option -net 210.22.128.0/18 gw $cncgw metric 1 +route $option -net 210.22.192.0/19 gw $cncgw metric 1 +route $option -net 210.22.224.0/20 gw $cncgw metric 1 +route $option -net 210.22.240.0/21 gw $cncgw metric 1 +route $option -net 210.22.248.0/22 gw $cncgw metric 1 +route $option -net 210.22.252.0/24 gw $cncgw metric 1 +route $option -net 210.22.254.0/23 gw $cncgw metric 1 +route $option -net 210.51.0.0/18 gw $cncgw metric 1 +route $option -net 210.51.66.0/23 gw $cncgw metric 1 +route $option -net 210.51.121.0/24 gw $cncgw metric 1 +route $option -net 210.51.130.0/24 gw $cncgw metric 1 +route $option -net 210.51.138.0/24 gw $cncgw metric 1 +route $option -net 210.51.160.0/19 gw $cncgw metric 1 +route $option -net 210.51.192.0/23 gw $cncgw metric 1 +route $option -net 210.51.194.0/24 gw $cncgw metric 1 +route $option -net 210.51.195.0/25 gw $cncgw metric 1 +route $option -net 210.51.195.128/26 gw $cncgw metric 1 +route $option -net 210.51.195.192/27 gw $cncgw metric 1 +route $option -net 210.51.195.224/28 gw $cncgw metric 1 +route $option -net 210.51.195.240/30 gw $cncgw metric 1 +route $option -net 210.51.195.248/29 gw $cncgw metric 1 +route $option -net 210.51.196.0/22 gw $cncgw metric 1 +route $option -net 210.51.200.0/21 gw $cncgw metric 1 +route $option -net 210.51.208.0/22 gw $cncgw metric 1 +route $option -net 210.51.212.0/23 gw $cncgw metric 1 +route $option -net 210.51.214.0/24 gw $cncgw metric 1 +route $option -net 210.51.215.0/25 gw $cncgw metric 1 +route $option -net 210.51.215.128/26 gw $cncgw metric 1 +route $option -net 210.51.224.0/25 gw $cncgw metric 1 +route $option -net 210.51.224.128/27 gw $cncgw metric 1 +route $option -net 210.51.224.224/27 gw $cncgw metric 1 +route $option -net 210.51.225.0/24 gw $cncgw metric 1 +route $option -net 210.51.226.0/24 gw $cncgw metric 1 +route $option -net 210.51.227.0/26 gw $cncgw metric 1 +route $option -net 210.51.227.96/27 gw $cncgw metric 1 +route $option -net 210.51.227.128/29 gw $cncgw metric 1 +route $option -net 210.51.228.0/23 gw $cncgw metric 1 +route $option -net 210.51.234.0/23 gw $cncgw metric 1 +route $option -net 210.51.238.0/24 gw $cncgw metric 1 +route $option -net 210.51.239.128/25 gw $cncgw metric 1 +route $option -net 210.51.240.0/25 gw $cncgw metric 1 +route $option -net 210.51.240.192/27 gw $cncgw metric 1 +route $option -net 210.51.240.240/28 gw $cncgw metric 1 +route $option -net 210.51.243.0/24 gw $cncgw metric 1 +route $option -net 210.51.244.128/25 gw $cncgw metric 1 +route $option -net 210.51.245.0/24 gw $cncgw metric 1 +route $option -net 210.51.246.0/23 gw $cncgw metric 1 +route $option -net 210.52.5.64/26 gw $cncgw metric 1 +route $option -net 210.52.5.128/25 gw $cncgw metric 1 +route $option -net 210.52.6.0/24 gw $cncgw metric 1 +route $option -net 210.52.8.0/24 gw $cncgw metric 1 +route $option -net 210.52.16.112/28 gw $cncgw metric 1 +route $option -net 210.52.17.0/24 gw $cncgw metric 1 +route $option -net 210.52.21.0/24 gw $cncgw metric 1 +route $option -net 210.52.22.0/24 gw $cncgw metric 1 +route $option -net 210.52.23.0/26 gw $cncgw metric 1 +route $option -net 210.52.42.160/27 gw $cncgw metric 1 +route $option -net 210.52.45.0/24 gw $cncgw metric 1 +route $option -net 210.52.46.0/23 gw $cncgw metric 1 +route $option -net 210.52.48.0/22 gw $cncgw metric 1 +route $option -net 210.52.52.0/24 gw $cncgw metric 1 +route $option -net 210.52.53.128/26 gw $cncgw metric 1 +route $option -net 210.52.56.128/25 gw $cncgw metric 1 +route $option -net 210.52.60.0/24 gw $cncgw metric 1 +route $option -net 210.52.64.0/23 gw $cncgw metric 1 +route $option -net 210.52.71.32/28 gw $cncgw metric 1 +route $option -net 210.52.71.56/29 gw $cncgw metric 1 +route $option -net 210.52.71.64/26 gw $cncgw metric 1 +route $option -net 210.52.71.224/28 gw $cncgw metric 1 +route $option -net 210.52.73.0/24 gw $cncgw metric 1 +route $option -net 210.52.75.0/29 gw $cncgw metric 1 +route $option -net 210.52.75.28/30 gw $cncgw metric 1 +route $option -net 210.52.75.32/27 gw $cncgw metric 1 +route $option -net 210.52.75.64/26 gw $cncgw metric 1 +route $option -net 210.52.75.128/25 gw $cncgw metric 1 +route $option -net 210.52.78.0/24 gw $cncgw metric 1 +route $option -net 210.52.79.0/25 gw $cncgw metric 1 +route $option -net 210.52.79.128/28 gw $cncgw metric 1 +route $option -net 210.52.79.144/29 gw $cncgw metric 1 +route $option -net 210.52.79.164/30 gw $cncgw metric 1 +route $option -net 210.52.79.168/29 gw $cncgw metric 1 +route $option -net 210.52.79.176/28 gw $cncgw metric 1 +route $option -net 210.52.79.192/26 gw $cncgw metric 1 +route $option -net 210.52.80.0/24 gw $cncgw metric 1 +route $option -net 210.52.83.0/24 gw $cncgw metric 1 +route $option -net 210.52.84.176/29 gw $cncgw metric 1 +route $option -net 210.52.85.128/26 gw $cncgw metric 1 +route $option -net 210.52.85.224/27 gw $cncgw metric 1 +route $option -net 210.52.86.0/23 gw $cncgw metric 1 +route $option -net 210.52.88.0/25 gw $cncgw metric 1 +route $option -net 210.52.88.192/26 gw $cncgw metric 1 +route $option -net 210.52.89.0/24 gw $cncgw metric 1 +route $option -net 210.52.90.0/23 gw $cncgw metric 1 +route $option -net 210.52.92.0/23 gw $cncgw metric 1 +route $option -net 210.52.94.0/25 gw $cncgw metric 1 +route $option -net 210.52.95.0/24 gw $cncgw metric 1 +route $option -net 210.52.96.0/23 gw $cncgw metric 1 +route $option -net 210.52.98.0/24 gw $cncgw metric 1 +route $option -net 210.52.100.0/24 gw $cncgw metric 1 +route $option -net 210.52.102.0/23 gw $cncgw metric 1 +route $option -net 210.52.104.0/24 gw $cncgw metric 1 +route $option -net 210.52.105.0/26 gw $cncgw metric 1 +route $option -net 210.52.105.128/25 gw $cncgw metric 1 +route $option -net 210.52.106.0/23 gw $cncgw metric 1 +route $option -net 210.52.108.0/23 gw $cncgw metric 1 +route $option -net 210.52.110.0/26 gw $cncgw metric 1 +route $option -net 210.52.126.0/23 gw $cncgw metric 1 +route $option -net 210.52.128.0/22 gw $cncgw metric 1 +route $option -net 210.52.132.0/23 gw $cncgw metric 1 +route $option -net 210.52.140.0/24 gw $cncgw metric 1 +route $option -net 210.52.148.48/28 gw $cncgw metric 1 +route $option -net 210.52.148.64/26 gw $cncgw metric 1 +route $option -net 210.52.148.128/25 gw $cncgw metric 1 +route $option -net 210.52.149.0/24 gw $cncgw metric 1 +route $option -net 210.52.150.0/23 gw $cncgw metric 1 +route $option -net 210.52.152.0/21 gw $cncgw metric 1 +route $option -net 210.52.160.0/22 gw $cncgw metric 1 +route $option -net 210.52.164.0/23 gw $cncgw metric 1 +route $option -net 210.52.168.0/21 gw $cncgw metric 1 +route $option -net 210.52.177.0/24 gw $cncgw metric 1 +route $option -net 210.52.178.0/23 gw $cncgw metric 1 +route $option -net 210.52.187.0/24 gw $cncgw metric 1 +route $option -net 210.52.190.0/23 gw $cncgw metric 1 +route $option -net 210.52.192.0/24 gw $cncgw metric 1 +route $option -net 210.52.194.0/23 gw $cncgw metric 1 +route $option -net 210.52.196.0/23 gw $cncgw metric 1 +route $option -net 210.52.198.0/24 gw $cncgw metric 1 +route $option -net 210.52.206.0/23 gw $cncgw metric 1 +route $option -net 210.52.208.0/20 gw $cncgw metric 1 +route $option -net 210.52.224.0/22 gw $cncgw metric 1 +route $option -net 210.52.228.0/24 gw $cncgw metric 1 +route $option -net 210.52.230.0/23 gw $cncgw metric 1 +route $option -net 210.52.232.0/23 gw $cncgw metric 1 +route $option -net 210.52.235.0/24 gw $cncgw metric 1 +route $option -net 210.52.237.0/24 gw $cncgw metric 1 +route $option -net 210.52.238.0/23 gw $cncgw metric 1 +route $option -net 210.52.240.0/24 gw $cncgw metric 1 +route $option -net 210.52.242.0/23 gw $cncgw metric 1 +route $option -net 210.52.244.0/23 gw $cncgw metric 1 +route $option -net 210.52.246.0/24 gw $cncgw metric 1 +route $option -net 210.52.248.0/23 gw $cncgw metric 1 +route $option -net 210.52.250.0/24 gw $cncgw metric 1 +route $option -net 210.52.252.0/24 gw $cncgw metric 1 +route $option -net 210.53.0.0/22 gw $cncgw metric 1 +route $option -net 210.53.4.0/23 gw $cncgw metric 1 +route $option -net 210.53.6.0/24 gw $cncgw metric 1 +route $option -net 210.53.8.0/23 gw $cncgw metric 1 +route $option -net 210.53.10.0/24 gw $cncgw metric 1 +route $option -net 210.53.18.0/24 gw $cncgw metric 1 +route $option -net 210.53.24.0/22 gw $cncgw metric 1 +route $option -net 210.53.30.0/23 gw $cncgw metric 1 +route $option -net 210.53.32.0/21 gw $cncgw metric 1 +route $option -net 210.53.40.0/22 gw $cncgw metric 1 +route $option -net 210.53.44.0/23 gw $cncgw metric 1 +route $option -net 210.53.47.0/24 gw $cncgw metric 1 +route $option -net 210.53.48.0/21 gw $cncgw metric 1 +route $option -net 210.53.56.0/23 gw $cncgw metric 1 +route $option -net 210.53.59.0/24 gw $cncgw metric 1 +route $option -net 210.53.60.0/23 gw $cncgw metric 1 +route $option -net 210.53.64.0/23 gw $cncgw metric 1 +route $option -net 210.53.66.0/24 gw $cncgw metric 1 +route $option -net 210.53.72.0/22 gw $cncgw metric 1 +route $option -net 210.53.76.0/24 gw $cncgw metric 1 +route $option -net 210.53.80.0/24 gw $cncgw metric 1 +route $option -net 210.53.84.0/24 gw $cncgw metric 1 +route $option -net 210.53.88.0/24 gw $cncgw metric 1 +route $option -net 210.53.97.0/24 gw $cncgw metric 1 +route $option -net 210.53.98.0/23 gw $cncgw metric 1 +route $option -net 210.53.105.0/24 gw $cncgw metric 1 +route $option -net 210.53.106.0/23 gw $cncgw metric 1 +route $option -net 210.53.108.0/22 gw $cncgw metric 1 +route $option -net 210.53.112.0/24 gw $cncgw metric 1 +route $option -net 210.53.115.0/24 gw $cncgw metric 1 +route $option -net 210.53.125.0/24 gw $cncgw metric 1 +route $option -net 210.53.126.0/23 gw $cncgw metric 1 +route $option -net 210.53.128.0/21 gw $cncgw metric 1 +route $option -net 210.53.136.0/22 gw $cncgw metric 1 +route $option -net 210.53.192.0/22 gw $cncgw metric 1 +route $option -net 210.53.200.0/24 gw $cncgw metric 1 +route $option -net 210.53.204.0/22 gw $cncgw metric 1 +route $option -net 210.53.208.0/20 gw $cncgw metric 1 +route $option -net 210.53.224.0/19 gw $cncgw metric 1 +route $option -net 210.56.192.0/19 gw $cncgw metric 1 +route $option -net 210.72.160.0/19 gw $cncgw metric 1 +route $option -net 210.72.192.0/19 gw $cncgw metric 1 +route $option -net 210.74.96.0/23 gw $cncgw metric 1 +route $option -net 210.74.98.0/24 gw $cncgw metric 1 +route $option -net 210.74.107.0/24 gw $cncgw metric 1 +route $option -net 210.74.108.0/22 gw $cncgw metric 1 +route $option -net 210.74.112.0/22 gw $cncgw metric 1 +route $option -net 210.74.128.0/19 gw $cncgw metric 1 +route $option -net 210.74.160.0/20 gw $cncgw metric 1 +route $option -net 210.74.176.0/23 gw $cncgw metric 1 +route $option -net 210.74.179.0/24 gw $cncgw metric 1 +route $option -net 210.74.180.0/22 gw $cncgw metric 1 +route $option -net 210.74.184.0/21 gw $cncgw metric 1 +route $option -net 210.77.176.0/20 gw $cncgw metric 1 +route $option -net 210.78.0.0/20 gw $cncgw metric 1 +route $option -net 210.78.17.0/24 gw $cncgw metric 1 +route $option -net 210.78.18.0/23 gw $cncgw metric 1 +route $option -net 210.78.20.0/22 gw $cncgw metric 1 +route $option -net 210.78.24.0/23 gw $cncgw metric 1 +route $option -net 210.78.26.0/24 gw $cncgw metric 1 +route $option -net 210.78.28.0/24 gw $cncgw metric 1 +route $option -net 210.78.148.0/22 gw $cncgw metric 1 +route $option -net 210.82.111.64/26 gw $cncgw metric 1 +route $option -net 210.82.111.128/25 gw $cncgw metric 1 +route $option -net 210.82.112.0/20 gw $cncgw metric 1 +route $option -net 210.82.128.0/21 gw $cncgw metric 1 +route $option -net 210.82.136.0/22 gw $cncgw metric 1 +route $option -net 210.82.140.0/23 gw $cncgw metric 1 +route $option -net 210.82.142.0/24 gw $cncgw metric 1 +route $option -net 210.82.144.0/20 gw $cncgw metric 1 +route $option -net 210.82.160.0/24 gw $cncgw metric 1 +route $option -net 210.82.163.0/24 gw $cncgw metric 1 +route $option -net 210.82.164.0/22 gw $cncgw metric 1 +route $option -net 210.82.168.0/21 gw $cncgw metric 1 +route $option -net 210.82.176.0/21 gw $cncgw metric 1 +route $option -net 210.82.184.0/22 gw $cncgw metric 1 +route $option -net 210.82.188.0/23 gw $cncgw metric 1 +route $option -net 210.82.191.0/24 gw $cncgw metric 1 +route $option -net 210.82.192.0/23 gw $cncgw metric 1 +route $option -net 210.82.195.0/24 gw $cncgw metric 1 +route $option -net 210.82.196.0/22 gw $cncgw metric 1 +route $option -net 210.82.200.0/21 gw $cncgw metric 1 +route $option -net 210.82.208.0/20 gw $cncgw metric 1 +route $option -net 210.82.224.0/22 gw $cncgw metric 1 +route $option -net 210.82.228.0/23 gw $cncgw metric 1 +route $option -net 210.82.231.0/24 gw $cncgw metric 1 +route $option -net 210.82.232.0/23 gw $cncgw metric 1 +route $option -net 210.82.235.0/24 gw $cncgw metric 1 +route $option -net 210.82.239.0/24 gw $cncgw metric 1 +route $option -net 210.82.240.0/21 gw $cncgw metric 1 +route $option -net 210.82.248.0/24 gw $cncgw metric 1 +route $option -net 210.82.250.0/24 gw $cncgw metric 1 +route $option -net 210.82.251.0/27 gw $cncgw metric 1 +route $option -net 210.82.251.64/27 gw $cncgw metric 1 +route $option -net 210.82.252.0/22 gw $cncgw metric 1 +route $option -net 210.83.0.0/19 gw $cncgw metric 1 +route $option -net 210.83.32.0/23 gw $cncgw metric 1 +route $option -net 210.83.48.0/22 gw $cncgw metric 1 +route $option -net 210.83.56.0/21 gw $cncgw metric 1 +route $option -net 210.83.64.0/18 gw $cncgw metric 1 +route $option -net 210.83.128.0/17 gw $cncgw metric 1 +route $option -net 210.185.200.0/22 gw $cncgw metric 1 +route $option -net 210.192.96.0/21 gw $cncgw metric 1 +route $option -net 210.192.112.0/20 gw $cncgw metric 1 +route $option -net 211.90.0.0/15 gw $cncgw metric 1 +route $option -net 211.92.0.0/18 gw $cncgw metric 1 +route $option -net 211.92.64.0/19 gw $cncgw metric 1 +route $option -net 211.92.96.0/21 gw $cncgw metric 1 +route $option -net 211.92.106.0/23 gw $cncgw metric 1 +route $option -net 211.92.108.0/22 gw $cncgw metric 1 +route $option -net 211.92.112.0/20 gw $cncgw metric 1 +route $option -net 211.92.128.0/17 gw $cncgw metric 1 +route $option -net 211.93.0.0/17 gw $cncgw metric 1 +route $option -net 211.93.128.0/20 gw $cncgw metric 1 +route $option -net 211.93.152.0/21 gw $cncgw metric 1 +route $option -net 211.93.160.0/21 gw $cncgw metric 1 +route $option -net 211.93.168.0/24 gw $cncgw metric 1 +route $option -net 211.93.172.0/22 gw $cncgw metric 1 +route $option -net 211.93.176.0/24 gw $cncgw metric 1 +route $option -net 211.93.180.0/23 gw $cncgw metric 1 +route $option -net 211.94.0.0/15 gw $cncgw metric 1 +route $option -net 211.96.0.0/15 gw $cncgw metric 1 +route $option -net 211.145.0.0/17 gw $cncgw metric 1 +route $option -net 211.156.0.0/19 gw $cncgw metric 1 +route $option -net 211.157.0.0/20 gw $cncgw metric 1 +route $option -net 211.157.19.0/24 gw $cncgw metric 1 +route $option -net 211.157.20.0/22 gw $cncgw metric 1 +route $option -net 211.157.24.0/21 gw $cncgw metric 1 +route $option -net 211.158.0.0/16 gw $cncgw metric 1 +route $option -net 211.159.80.0/20 gw $cncgw metric 1 +route $option -net 211.159.96.0/22 gw $cncgw metric 1 +route $option -net 211.159.100.0/23 gw $cncgw metric 1 +route $option -net 211.163.1.0/24 gw $cncgw metric 1 +route $option -net 211.163.2.0/24 gw $cncgw metric 1 +route $option -net 211.163.9.0/24 gw $cncgw metric 1 +route $option -net 211.163.11.0/24 gw $cncgw metric 1 +route $option -net 211.163.12.0/22 gw $cncgw metric 1 +route $option -net 211.163.17.0/24 gw $cncgw metric 1 +route $option -net 211.163.18.0/23 gw $cncgw metric 1 +route $option -net 211.163.25.0/24 gw $cncgw metric 1 +route $option -net 211.163.26.0/24 gw $cncgw metric 1 +route $option -net 211.163.29.0/24 gw $cncgw metric 1 +route $option -net 211.163.30.0/23 gw $cncgw metric 1 +route $option -net 211.163.32.0/22 gw $cncgw metric 1 +route $option -net 211.163.36.0/23 gw $cncgw metric 1 +route $option -net 211.163.39.0/24 gw $cncgw metric 1 +route $option -net 211.163.41.0/24 gw $cncgw metric 1 +route $option -net 211.163.42.0/23 gw $cncgw metric 1 +route $option -net 211.163.49.0/24 gw $cncgw metric 1 +route $option -net 211.163.50.0/23 gw $cncgw metric 1 +route $option -net 211.163.52.0/22 gw $cncgw metric 1 +route $option -net 211.163.56.0/24 gw $cncgw metric 1 +route $option -net 211.163.61.0/24 gw $cncgw metric 1 +route $option -net 211.163.65.0/24 gw $cncgw metric 1 +route $option -net 211.163.66.0/23 gw $cncgw metric 1 +route $option -net 211.163.68.0/22 gw $cncgw metric 1 +route $option -net 211.163.72.0/24 gw $cncgw metric 1 +route $option -net 211.163.80.0/23 gw $cncgw metric 1 +route $option -net 211.163.82.0/24 gw $cncgw metric 1 +route $option -net 211.163.89.0/24 gw $cncgw metric 1 +route $option -net 211.163.93.0/24 gw $cncgw metric 1 +route $option -net 211.163.94.0/24 gw $cncgw metric 1 +route $option -net 211.163.97.0/24 gw $cncgw metric 1 +route $option -net 211.163.98.0/23 gw $cncgw metric 1 +route $option -net 211.163.100.0/22 gw $cncgw metric 1 +route $option -net 211.163.104.0/23 gw $cncgw metric 1 +route $option -net 211.163.113.0/24 gw $cncgw metric 1 +route $option -net 211.163.114.0/23 gw $cncgw metric 1 +route $option -net 211.163.116.0/23 gw $cncgw metric 1 +route $option -net 211.163.118.0/24 gw $cncgw metric 1 +route $option -net 211.163.121.0/24 gw $cncgw metric 1 +route $option -net 211.163.122.0/23 gw $cncgw metric 1 +route $option -net 211.163.124.0/23 gw $cncgw metric 1 +route $option -net 211.163.128.0/24 gw $cncgw metric 1 +route $option -net 211.163.180.0/23 gw $cncgw metric 1 +route $option -net 211.163.188.0/24 gw $cncgw metric 1 +route $option -net 211.163.193.0/24 gw $cncgw metric 1 +route $option -net 211.163.194.0/24 gw $cncgw metric 1 +route $option -net 211.163.200.0/24 gw $cncgw metric 1 +route $option -net 211.163.242.0/24 gw $cncgw metric 1 +route $option -net 218.7.0.0/16 gw $cncgw metric 1 +route $option -net 218.8.0.0/14 gw $cncgw metric 1 +route $option -net 218.12.0.0/16 gw $cncgw metric 1 +route $option -net 218.21.128.0/17 gw $cncgw metric 1 +route $option -net 218.24.0.0/14 gw $cncgw metric 1 +route $option -net 218.28.0.0/15 gw $cncgw metric 1 +route $option -net 218.30.223.0/24 gw $cncgw metric 1 +route $option -net 218.30.253.0/24 gw $cncgw metric 1 +route $option -net 218.30.254.0/24 gw $cncgw metric 1 +route $option -net 218.56.0.0/14 gw $cncgw metric 1 +route $option -net 218.60.0.0/15 gw $cncgw metric 1 +route $option -net 218.62.0.0/17 gw $cncgw metric 1 +route $option -net 218.67.128.0/17 gw $cncgw metric 1 +route $option -net 218.68.0.0/15 gw $cncgw metric 1 +route $option -net 218.97.192.0/19 gw $cncgw metric 1 +route $option -net 218.104.0.0/16 gw $cncgw metric 1 +route $option -net 218.105.0.0/20 gw $cncgw metric 1 +route $option -net 218.105.128.0/24 gw $cncgw metric 1 +route $option -net 218.106.0.0/17 gw $cncgw metric 1 +route $option -net 218.106.128.0/21 gw $cncgw metric 1 +route $option -net 218.106.136.0/22 gw $cncgw metric 1 +route $option -net 218.106.144.0/20 gw $cncgw metric 1 +route $option -net 218.106.160.0/20 gw $cncgw metric 1 +route $option -net 218.106.176.0/22 gw $cncgw metric 1 +route $option -net 218.106.192.0/19 gw $cncgw metric 1 +route $option -net 218.106.240.0/20 gw $cncgw metric 1 +route $option -net 218.107.0.0/16 gw $cncgw metric 1 +route $option -net 218.108.0.0/15 gw $cncgw metric 1 +route $option -net 218.247.32.0/19 gw $cncgw metric 1 +route $option -net 219.82.0.0/16 gw $cncgw metric 1 +route $option -net 219.154.0.0/15 gw $cncgw metric 1 +route $option -net 219.156.0.0/15 gw $cncgw metric 1 +route $option -net 219.158.0.0/18 gw $cncgw metric 1 +route $option -net 219.158.64.0/22 gw $cncgw metric 1 +route $option -net 219.158.96.0/24 gw $cncgw metric 1 +route $option -net 219.158.128.0/17 gw $cncgw metric 1 +route $option -net 219.159.0.0/18 gw $cncgw metric 1 +route $option -net 219.235.96.0/19 gw $cncgw metric 1 +route $option -net 220.115.226.0/23 gw $cncgw metric 1 +route $option -net 220.154.128.0/17 gw $cncgw metric 1 +route $option -net 220.192.0.0/16 gw $cncgw metric 1 +route $option -net 220.193.0.0/17 gw $cncgw metric 1 +route $option -net 220.193.128.0/18 gw $cncgw metric 1 +route $option -net 220.193.192.0/19 gw $cncgw metric 1 +route $option -net 220.193.240.0/20 gw $cncgw metric 1 +route $option -net 220.194.0.0/15 gw $cncgw metric 1 +route $option -net 220.196.0.0/16 gw $cncgw metric 1 +route $option -net 220.197.0.0/17 gw $cncgw metric 1 +route $option -net 220.197.128.0/18 gw $cncgw metric 1 +route $option -net 220.197.192.0/19 gw $cncgw metric 1 +route $option -net 220.197.224.0/21 gw $cncgw metric 1 +route $option -net 220.198.0.0/15 gw $cncgw metric 1 +route $option -net 220.200.0.0/17 gw $cncgw metric 1 +route $option -net 220.200.128.0/20 gw $cncgw metric 1 +route $option -net 220.200.144.0/21 gw $cncgw metric 1 +route $option -net 220.200.160.0/19 gw $cncgw metric 1 +route $option -net 220.200.192.0/19 gw $cncgw metric 1 +route $option -net 220.200.240.0/20 gw $cncgw metric 1 +route $option -net 220.201.0.0/16 gw $cncgw metric 1 +route $option -net 220.202.0.0/16 gw $cncgw metric 1 +route $option -net 220.203.0.0/18 gw $cncgw metric 1 +route $option -net 220.203.218.0/23 gw $cncgw metric 1 +route $option -net 220.203.221.0/24 gw $cncgw metric 1 +route $option -net 220.203.222.0/23 gw $cncgw metric 1 +route $option -net 220.203.224.0/22 gw $cncgw metric 1 +route $option -net 220.203.228.0/23 gw $cncgw metric 1 +route $option -net 220.205.0.0/17 gw $cncgw metric 1 +route $option -net 220.205.128.0/18 gw $cncgw metric 1 +route $option -net 220.205.192.0/19 gw $cncgw metric 1 +route $option -net 220.205.224.0/21 gw $cncgw metric 1 +route $option -net 220.206.144.0/24 gw $cncgw metric 1 +route $option -net 220.206.161.0/24 gw $cncgw metric 1 +route $option -net 220.206.192.0/20 gw $cncgw metric 1 +route $option -net 220.206.211.0/24 gw $cncgw metric 1 +route $option -net 220.206.212.0/23 gw $cncgw metric 1 +route $option -net 220.206.216.0/24 gw $cncgw metric 1 +route $option -net 220.206.218.0/23 gw $cncgw metric 1 +route $option -net 220.206.220.0/23 gw $cncgw metric 1 +route $option -net 220.206.222.0/24 gw $cncgw metric 1 +route $option -net 220.206.225.0/24 gw $cncgw metric 1 +route $option -net 220.206.229.0/24 gw $cncgw metric 1 +route $option -net 220.206.231.0/24 gw $cncgw metric 1 +route $option -net 220.206.235.0/24 gw $cncgw metric 1 +route $option -net 220.206.236.0/22 gw $cncgw metric 1 +route $option -net 220.206.243.0/24 gw $cncgw metric 1 +route $option -net 220.206.244.0/23 gw $cncgw metric 1 +route $option -net 220.206.246.0/24 gw $cncgw metric 1 +route $option -net 220.206.248.0/23 gw $cncgw metric 1 +route $option -net 220.206.254.0/23 gw $cncgw metric 1 +route $option -net 220.207.0.0/17 gw $cncgw metric 1 +route $option -net 220.207.128.0/18 gw $cncgw metric 1 +route $option -net 220.207.192.0/19 gw $cncgw metric 1 +route $option -net 220.207.224.0/20 gw $cncgw metric 1 +route $option -net 220.207.240.0/21 gw $cncgw metric 1 +route $option -net 220.207.248.0/22 gw $cncgw metric 1 +route $option -net 220.207.252.0/23 gw $cncgw metric 1 +route $option -net 220.248.0.0/17 gw $cncgw metric 1 +route $option -net 220.248.128.0/18 gw $cncgw metric 1 +route $option -net 220.248.192.0/19 gw $cncgw metric 1 +route $option -net 220.248.224.0/22 gw $cncgw metric 1 +route $option -net 220.248.228.0/24 gw $cncgw metric 1 +route $option -net 220.248.229.0/27 gw $cncgw metric 1 +route $option -net 220.248.229.32/28 gw $cncgw metric 1 +route $option -net 220.248.229.56/29 gw $cncgw metric 1 +route $option -net 220.248.229.64/26 gw $cncgw metric 1 +route $option -net 220.248.229.128/25 gw $cncgw metric 1 +route $option -net 220.248.230.0/23 gw $cncgw metric 1 +route $option -net 220.248.232.0/21 gw $cncgw metric 1 +route $option -net 220.248.240.0/20 gw $cncgw metric 1 +route $option -net 220.249.0.0/16 gw $cncgw metric 1 +route $option -net 220.250.0.0/19 gw $cncgw metric 1 +route $option -net 220.250.32.0/21 gw $cncgw metric 1 +route $option -net 220.250.40.0/22 gw $cncgw metric 1 +route $option -net 220.250.48.0/20 gw $cncgw metric 1 +route $option -net 220.250.64.0/24 gw $cncgw metric 1 +route $option -net 221.0.0.0/13 gw $cncgw metric 1 +route $option -net 221.8.0.0/15 gw $cncgw metric 1 +route $option -net 221.10.0.0/16 gw $cncgw metric 1 +route $option -net 221.11.0.0/17 gw $cncgw metric 1 +route $option -net 221.11.128.0/19 gw $cncgw metric 1 +route $option -net 221.11.160.0/20 gw $cncgw metric 1 +route $option -net 221.11.176.0/21 gw $cncgw metric 1 +route $option -net 221.11.184.0/22 gw $cncgw metric 1 +route $option -net 221.11.188.0/23 gw $cncgw metric 1 +route $option -net 221.11.191.0/24 gw $cncgw metric 1 +route $option -net 221.11.192.0/18 gw $cncgw metric 1 +route $option -net 221.12.0.0/17 gw $cncgw metric 1 +route $option -net 221.12.128.0/18 gw $cncgw metric 1 +route $option -net 221.13.0.0/16 gw $cncgw metric 1 +route $option -net 221.14.0.0/15 gw $cncgw metric 1 +route $option -net 221.136.0.0/16 gw $cncgw metric 1 +route $option -net 221.181.144.0/21 gw $cncgw metric 1 +route $option -net 221.192.0.0/14 gw $cncgw metric 1 +route $option -net 221.196.0.0/15 gw $cncgw metric 1 +route $option -net 221.198.0.0/16 gw $cncgw metric 1 +route $option -net 221.199.0.0/17 gw $cncgw metric 1 +route $option -net 221.199.128.0/18 gw $cncgw metric 1 +route $option -net 221.199.192.0/20 gw $cncgw metric 1 +route $option -net 221.199.224.0/19 gw $cncgw metric 1 +route $option -net 221.200.0.0/13 gw $cncgw metric 1 +route $option -net 221.208.0.0/12 gw $cncgw metric 1 +route $option -net 221.238.238.0/24 gw $cncgw metric 1 +route $option -net 222.128.0.0/12 gw $cncgw metric 1 +route $option -net 222.160.0.0/14 gw $cncgw metric 1 +route $option -net 223.27.184.0/22 gw $cncgw metric 1" > /etc/linux_cnc_route.sh ; chmod 755 /etc/linux_cnc_route.sh + +if [ -f /etc/rc.d/rc.local ]; then +sed '/exit 0/d' /etc/rc.d/rc.local > /etc/rc.d/rc.local.a ; mv -f /etc/rc.d/rc.local.a /etc/rc.d/rc.local ; chmod 755 /etc/rc.d/rc.local +echo "/etc/linux_cnc_route.sh" >> /etc/rc.d/rc.local +/etc/linux_cnc_route.sh +else +sed '/exit 0/d' /etc/rc.local > /etc/rc.local.a ; mv -f /etc/rc.local.a /etc/rc.local ; chmod 755 /etc/rc.local +echo "/etc/linux_cnc_route.sh" >> /etc/rc.local +/etc/linux_cnc_route.sh +fi + +else +echo "Unknown operation.Enter add or del." +exit 1 +fi + +echo "Operation is completed!" +exit 0