Linux下安装虚拟机步骤

  • 格式:doc
  • 大小:223.00 KB
  • 文档页数:44

以济阳机房测试机为例1、编辑防火墙登录服务器,然后输入:ls输入:vi iptables.sh 然后按i ,接着用方向键“下”选择到下图区域:注释:标注部分为需要添加及修改部分。

蓝色框内为IP为咱们公司的出口IP(可以通过在地址栏里输入:查得到)。

另外,dport后的端口号需要做相应的修改,每个虚拟机一个,需要区别常用的端口号。

做完相应的步骤后,按Esc,然后按shift+:-----wq 。

即为:保存退出。

特别需要注意的是:做完上述步骤后,一定执行:bash -x iptabels.sh 。

因为,更改后的策略需要强制运行一下后才生效。

2、创建虚拟机1. 建立虚拟机磁盘镜像文件qcow2格式是kvm支持的标准格式,raw格式为虚拟磁盘文件通用格式。

有测试数据表明raw 格式的I/O性能略高于qcow2格式,但是在加密,容量,快照方面qcow2格式有优势qemu-img create -f qcow2 test.qcow2 20(G)//建立qcow2格式磁盘文件qemu-img create –f raw test.raw 20(G)//建立raw格式磁盘文件qemu-img info test.qcow2 //查看已经创建的虚拟磁盘文件virt-install -v -n name -r x(虚拟机内存大小,单位是默认是M,不用带单位) --vcpus=2 --check-cpu -c /data/iso/CentOS-6.4-x86_64-bin-DVD1.iso -f /data/vhosts/name.raw –s(虚拟机硬盘大小,单位默认是G,不用带单位)--accelerate --bridge=br0 --vnc --vncport=VNC(端口号)--vnclisten=0.0.0.0 --noacpi2.通过VNC登录创建的虚拟机。

3、进行系统安装。

安装步骤省略。

备注:在系统安装完毕,重启后,会出现VNC无法连接到虚拟机的情况,这时候需要手动开启虚拟机。

命令为如下图所示:其中,name为你之前创建的虚拟机名称。

4、配置创建好的虚拟机。

VNC登录该机器,配置双网卡信息。

[root@webserver]# cd /etc/sysconfig/network-scripts[root@webserver network-scripts]# vi ifcfg-eth0# Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]DEVICE=eth0BOOTPROTO=staticBROADCAST=172.23.108.255(广播地址)--------可以没有HW ADDR=00:0c:29:76:20:d1(网卡mac地址)--实际的MACIPADDR=172.23.108.203 (ip)------------------需要配置的IPNETMASK=255.255.255.128(子网掩码)----------对应的掩码GA TEWAY=172.23.108.128 (网关)----------------对应的网关ONBOOT=yesTYPE=Ethernetcp ifcfg-eth0 ifcfg-eth0:0vi ifcfg-eth0:0DEVICE=eth0:0BOOTPROTO=staticBROADCAST=172.23.108.255(广播地址)IPADDR=172.23.108.204 (ip)-----------------需要配置的IPNETMASK=255.255.255.128(子网掩码)--------对应的掩码ONBOOT=yesTYPE=Ethernetservice network restart (重启网卡)vi /etc/resolv.confnameserver 8.8.8.8nameserver 8.8.4.4(如果是centOS6.0以上版本的linux系统,DNS直接写在网卡里,取名DNS1,DNS2) 5、添加路由。

vi route.sh----i----将路由表复制下来,在此处点鼠标右键----esc---冒号---wq---chmod +x route.sh----./route.sh-----add路由表如下:#!/bin/shecho -n "please input gateway of cnc: "read cncgwecho -n "add or del: "read optionif [ "$option" = "add" ]; thenroute $option -net 1.24.0.0/13 gw $cncgw metric 1route $option -net 1.56.0.0/13 gw $cncgw metric 1route $option -net 1.93.0.0/16 gw $cncgw metric 1route $option -net 1.188.0.0/14 gw $cncgw metric 1route $option -net 14.204.0.0/15 gw $cncgw metric 1route $option -net 27.8.0.0/13 gw $cncgw metric 1route $option -net 27.36.0.0/14 gw $cncgw metric 1route $option -net 27.40.0.0/13 gw $cncgw metric 1route $option -net 27.50.128.0/17 gw $cncgw metric 1route $option -net 27.98.224.0/19 gw $cncgw metric 1 route $option -net 27.106.128.0/18 gw $cncgw metric 1 route $option -net 27.112.8.0/22 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.51.253.0/24 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.48.0.0/15 gw $cncgw metric 1 route $option -net 42.62.0.0/17 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.157.0.0/21 gw $cncgw metric 1 route $option -net 42.157.8.0/22 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.24.0.0/15 gw $cncgw metric 1 route $option -net 58.68.128.0/20 gw $cncgw metric 1 route $option -net 58.68.144.0/21 gw $cncgw metric 1 route $option -net 58.68.179.0/24 gw $cncgw metric 1 route $option -net 58.68.180.0/24 gw $cncgw metric 1 route $option -net 58.83.8.0/24 gw $cncgw metric 1 route $option -net 58.116.0.0/14 gw $cncgw metric 1 route $option -net 58.128.0.0/13 gw $cncgw metric 1 route $option -net 58.144.0.0/16 gw $cncgw metric 1 route $option -net 58.240.0.0/12 gw $cncgw metric 1 route $option -net 59.108.32.0/19 gw $cncgw metric 1 route $option -net 59.108.64.0/18 gw $cncgw metric 1 route $option -net 60.0.0.0/11 gw $cncgw metric 1 route $option -net 60.206.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.176.0/20 gw $cncgw metric 1 route $option -net 61.28.112.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 1route $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.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.232.0/21 gw $cncgw metric 1 route $option -net 61.240.240.0/21 gw $cncgw metric 1 route $option -net 61.241.64.0/18 gw $cncgw metric 1 route $option -net 61.241.128.0/19 gw $cncgw metric 1 route $option -net 61.241.192.0/19 gw $cncgw metric 1 route $option -net 61.242.0.0/17 gw $cncgw metric 1 route $option -net 61.242.160.0/19 gw $cncgw metric 1 route $option -net 61.242.224.0/19 gw $cncgw metric 1 route $option -net 61.243.32.0/19 gw $cncgw metric 1 route $option -net 61.243.112.0/21 gw $cncgw metric 1 route $option -net 61.243.124.0/22 gw $cncgw metric 1 route $option -net 61.243.128.0/18 gw $cncgw metric 1 route $option -net 61.243.192.0/19 gw $cncgw metric 1 route $option -net 101.16.0.0/12 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 101.232.0.0/15 gw $cncgw metric 1 route $option -net 101.251.192.0/21 gw $cncgw metric 1 route $option -net 103.2.108.0/22 gw $cncgw metric 1 route $option -net 103.5.56.0/22 gw $cncgw metric 1 route $option -net 103.7.220.0/22 gw $cncgw metric 1 route $option -net 103.8.220.0/22 gw $cncgw metric 1 route $option -net 103.10.84.0/22 gw $cncgw metric 1route $option -net 103.16.124.0/22 gw $cncgw metric 1 route $option -net 103.17.40.0/22 gw $cncgw metric 1 route $option -net 103.19.46.0/23 gw $cncgw metric 1 route $option -net 103.19.232.0/22 gw $cncgw metric 1 route $option -net 103.24.228.0/22 gw $cncgw metric 1 route $option -net 103.27.4.0/22 gw $cncgw metric 1 route $option -net 103.28.204.0/22 gw $cncgw metric 1 route $option -net 103.29.132.0/22 gw $cncgw metric 1 route $option -net 103.30.148.0/22 gw $cncgw metric 1 route $option -net 103.31.52.0/22 gw $cncgw metric 1 route $option -net 103.31.200.0/22 gw $cncgw metric 1 route $option -net 103.242.200.0/22 gw $cncgw metric 1 route $option -net 103.243.136.0/22 gw $cncgw metric 1 route $option -net 103.244.64.0/22 gw $cncgw metric 1 route $option -net 103.244.84.0/22 gw $cncgw metric 1 route $option -net 103.244.164.0/22 gw $cncgw metric 1 route $option -net 103.244.232.0/22 gw $cncgw metric 1 route $option -net 103.245.80.0/22 gw $cncgw metric 1 route $option -net 103.246.152.0/22 gw $cncgw metric 1 route $option -net 103.249.52.0/22 gw $cncgw metric 1 route $option -net 103.249.128.0/22 gw $cncgw metric 1 route $option -net 103.250.224.0/22 gw $cncgw metric 1 route $option -net 103.250.248.0/22 gw $cncgw metric 1 route $option -net 103.253.224.0/22 gw $cncgw metric 1 route $option -net 106.2.160.0/21 gw $cncgw metric 1 route $option -net 106.2.168.0/22 gw $cncgw metric 1 route $option -net 106.3.32.0/20 gw $cncgw metric 1 route $option -net 106.3.72.0/21 gw $cncgw metric 1 route $option -net 106.3.80.0/22 gw $cncgw metric 1 route $option -net 106.3.176.0/20 gw $cncgw metric 1 route $option -net 106.3.208.0/21 gw $cncgw metric 1 route $option -net 106.3.224.0/21 gw $cncgw metric 1 route $option -net 106.3.248.0/21 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.52.0.0/15 gw $cncgw metric 1 route $option -net 110.72.0.0/15 gw $cncgw metric 1 route $option -net 110.172.192.0/18 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.160.0.0/13 gw $cncgw metric 1route $option -net 111.215.254.0/23 gw $cncgw metric 1 route $option -net 111.228.0.0/16 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.18.32.0/19 gw $cncgw metric 1 route $option -net 113.18.64.0/19 gw $cncgw metric 1 route $option -net 113.18.104.0/21 gw $cncgw metric 1 route $option -net 113.18.144.0/21 gw $cncgw metric 1 route $option -net 113.31.32.0/20 gw $cncgw metric 1 route $option -net 113.31.64.0/22 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.208.112.0/21 gw $cncgw metric 1 route $option -net 113.209.192.0/22 gw $cncgw metric 1 route $option -net 113.213.0.0/18 gw $cncgw metric 1 route $option -net 113.213.64.0/19 gw $cncgw metric 1 route $option -net 113.224.0.0/12 gw $cncgw metric 1 route $option -net 114.28.248.0/21 gw $cncgw metric 1 route $option -net 114.66.0.0/21 gw $cncgw metric 1 route $option -net 114.66.8.0/23 gw $cncgw metric 1 route $option -net 114.66.64.0/22 gw $cncgw metric 1 route $option -net 114.66.192.0/21 gw $cncgw metric 1 route $option -net 114.66.200.0/22 gw $cncgw metric 1 route $option -net 114.110.0.0/20 gw $cncgw metric 1 route $option -net 114.110.64.0/18 gw $cncgw metric 1 route $option -net 114.111.0.0/19 gw $cncgw metric 1 route $option -net 114.111.160.0/22 gw $cncgw metric 1 route $option -net 114.111.164.0/23 gw $cncgw metric 1 route $option -net 114.112.16.0/23 gw $cncgw metric 1 route $option -net 114.112.24.0/21 gw $cncgw metric 1route $option -net 114.112.64.0/21 gw $cncgw metric 1 route $option -net 114.112.80.0/20 gw $cncgw metric 1 route $option -net 114.112.124.0/22 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.160.0/19 gw $cncgw metric 1 route $option -net 114.112.192.0/21 gw $cncgw metric 1 route $option -net 114.113.16.0/20 gw $cncgw metric 1 route $option -net 114.113.32.0/19 gw $cncgw metric 1 route $option -net 114.113.64.0/18 gw $cncgw metric 1 route $option -net 114.113.128.0/21 gw $cncgw metric 1 route $option -net 114.113.144.0/20 gw $cncgw metric 1 route $option -net 114.113.220.0/22 gw $cncgw metric 1 route $option -net 114.113.224.0/20 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 115.100.0.0/15 gw $cncgw metric 1 route $option -net 115.102.160.0/19 gw $cncgw metric 1 route $option -net 115.102.192.0/18 gw $cncgw metric 1 route $option -net 115.103.0.0/17 gw $cncgw metric 1 route $option -net 115.173.0.0/18 gw $cncgw metric 1 route $option -net 115.174.0.0/18 gw $cncgw metric 1 route $option -net 115.174.64.0/19 gw $cncgw metric 1 route $option -net 115.182.0.0/20 gw $cncgw metric 1 route $option -net 115.182.48.0/20 gw $cncgw metric 1 route $option -net 115.182.64.0/20 gw $cncgw metric 1 route $option -net 116.2.0.0/15 gw $cncgw metric 1 route $option -net 116.70.0.0/18 gw $cncgw metric 1 route $option -net 116.90.80.0/21 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.193.16.0/23 gw $cncgw metric 1 route $option -net 116.193.18.0/24 gw $cncgw metric 1 route $option -net 116.199.0.0/17 gw $cncgw metric 1 route $option -net 116.213.115.0/24 gw $cncgw metric 1 route $option -net 116.213.128.0/17 gw $cncgw metric 1 route $option -net 116.218.0.0/16 gw $cncgw metric 1 route $option -net 116.242.0.0/17 gw $cncgw metric 1route $option -net 117.8.0.0/13 gw $cncgw metric 1 route $option -net 117.74.64.0/20 gw $cncgw metric 1 route $option -net 117.78.16.0/21 gw $cncgw metric 1 route $option -net 117.79.64.0/20 gw $cncgw metric 1 route $option -net 117.79.80.0/23 gw $cncgw metric 1 route $option -net 117.79.88.0/21 gw $cncgw metric 1 route $option -net 117.79.128.0/19 gw $cncgw metric 1 route $option -net 117.79.224.0/20 gw $cncgw metric 1 route $option -net 117.79.240.0/23 gw $cncgw metric 1 route $option -net 117.79.242.0/24 gw $cncgw metric 1 route $option -net 117.106.0.0/15 gw $cncgw metric 1 route $option -net 117.112.0.0/13 gw $cncgw metric 1 route $option -net 117.121.0.0/18 gw $cncgw metric 1 route $option -net 117.121.128.0/18 gw $cncgw metric 1 route $option -net 118.25.192.0/21 gw $cncgw metric 1 route $option -net 118.25.200.0/22 gw $cncgw metric 1 route $option -net 118.25.204.0/23 gw $cncgw metric 1 route $option -net 118.25.206.0/24 gw $cncgw metric 1 route $option -net 118.26.16.0/20 gw $cncgw metric 1 route $option -net 118.26.56.0/21 gw $cncgw metric 1 route $option -net 118.26.64.0/21 gw $cncgw metric 1 route $option -net 118.26.96.0/22 gw $cncgw metric 1 route $option -net 118.26.128.0/18 gw $cncgw metric 1 route $option -net 118.26.200.0/21 gw $cncgw metric 1 route $option -net 118.26.224.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.88.32.0/19 gw $cncgw metric 1 route $option -net 118.88.64.0/18 gw $cncgw metric 1 route $option -net 118.88.128.0/17 gw $cncgw metric 1 route $option -net 118.126.6.0/23 gw $cncgw metric 1 route $option -net 118.144.128.0/18 gw $cncgw metric 1 route $option -net 118.186.64.0/21 gw $cncgw metric 1 route $option -net 118.186.192.0/19 gw $cncgw metric 1 route $option -net 118.186.224.0/21 gw $cncgw metric 1 route $option -net 118.186.238.0/23 gw $cncgw metric 1 route $option -net 118.186.240.0/21 gw $cncgw metric 1 route $option -net 118.186.252.0/22 gw $cncgw metric 1 route $option -net 118.187.0.0/16 gw $cncgw metric 1 route $option -net 118.192.0.0/16 gw $cncgw metric 1 route $option -net 118.194.32.0/19 gw $cncgw metric 1 route $option -net 118.194.128.0/21 gw $cncgw metric 1 route $option -net 118.194.164.0/22 gw $cncgw metric 1 route $option -net 118.194.192.0/21 gw $cncgw metric 1route $option -net 118.194.207.0/24 gw $cncgw metric 1 route $option -net 118.194.208.0/21 gw $cncgw metric 1 route $option -net 118.194.216.0/22 gw $cncgw metric 1 route $option -net 118.194.232.0/21 gw $cncgw metric 1 route $option -net 118.194.240.0/21 gw $cncgw metric 1 route $option -net 118.195.64.0/22 gw $cncgw metric 1 route $option -net 118.195.68.0/23 gw $cncgw metric 1 route $option -net 118.195.70.0/24 gw $cncgw metric 1 route $option -net 118.206.0.0/16 gw $cncgw metric 1 route $option -net 118.212.0.0/16 gw $cncgw metric 1 route $option -net 118.244.0.0/16 gw $cncgw metric 1 route $option -net 119.4.0.0/14 gw $cncgw metric 1 route $option -net 119.18.192.0/20 gw $cncgw metric 1 route $option -net 119.27.64.0/18 gw $cncgw metric 1 route $option -net 119.32.0.0/14 gw $cncgw metric 1 route $option -net 119.36.0.0/16 gw $cncgw metric 1 route $option -net 119.39.0.0/16 gw $cncgw metric 1 route $option -net 119.40.0.0/18 gw $cncgw metric 1 route $option -net 119.40.128.0/17 gw $cncgw metric 1 route $option -net 119.42.0.0/19 gw $cncgw metric 1 route $option -net 119.44.0.0/15 gw $cncgw metric 1 route $option -net 119.48.0.0/13 gw $cncgw metric 1 route $option -net 119.57.0.0/17 gw $cncgw metric 1 route $option -net 119.57.128.0/18 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.63.32.0/20 gw $cncgw metric 1 route $option -net 119.80.32.0/20 gw $cncgw metric 1 route $option -net 119.80.56.0/21 gw $cncgw metric 1 route $option -net 119.80.64.0/18 gw $cncgw metric 1 route $option -net 119.80.128.0/18 gw $cncgw metric 1 route $option -net 119.80.192.0/21 gw $cncgw metric 1 route $option -net 119.80.200.0/23 gw $cncgw metric 1 route $option -net 119.80.202.0/24 gw $cncgw metric 1 route $option -net 119.88.0.0/16 gw $cncgw metric 1 route $option -net 119.90.32.0/21 gw $cncgw metric 1 route $option -net 119.90.40.0/22 gw $cncgw metric 1 route $option -net 119.90.44.0/23 gw $cncgw metric 1 route $option -net 119.90.46.0/24 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.148.160.0/23 gw $cncgw metric 1 route $option -net 119.148.162.0/24 gw $cncgw metric 1 route $option -net 119.161.128.0/18 gw $cncgw metric 1route $option -net 119.161.208.0/20 gw $cncgw metric 1 route $option -net 119.161.224.0/19 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.233.128.0/17 gw $cncgw metric 1 route $option -net 119.248.0.0/14 gw $cncgw metric 1 route $option -net 119.252.240.0/21 gw $cncgw metric 1 route $option -net 119.253.32.0/19 gw $cncgw metric 1 route $option -net 119.253.128.0/17 gw $cncgw metric 1 route $option -net 119.255.0.0/18 gw $cncgw metric 1 route $option -net 120.0.0.0/12 gw $cncgw metric 1 route $option -net 120.65.0.0/16 gw $cncgw metric 1 route $option -net 120.66.0.0/16 gw $cncgw metric 1 route $option -net 120.80.0.0/13 gw $cncgw metric 1 route $option -net 120.92.240.0/20 gw $cncgw metric 1 route $option -net 120.128.0.0/21 gw $cncgw metric 1 route $option -net 120.131.64.0/19 gw $cncgw metric 1 route $option -net 120.131.128.0/17 gw $cncgw metric 1 route $option -net 121.5.0.0/24 gw $cncgw metric 1 route $option -net 121.5.16.0/21 gw $cncgw metric 1 route $option -net 121.5.32.0/20 gw $cncgw metric 1 route $option -net 121.16.0.0/12 gw $cncgw metric 1 route $option -net 121.52.208.0/20 gw $cncgw metric 1 route $option -net 121.52.224.0/19 gw $cncgw metric 1 route $option -net 121.79.128.0/20 gw $cncgw metric 1 route $option -net 121.79.144.0/22 gw $cncgw metric 1 route $option -net 121.101.208.0/20 gw $cncgw metric 1 route $option -net 121.201.128.0/17 gw $cncgw metric 1 route $option -net 122.0.64.0/18 gw $cncgw metric 1 route $option -net 122.10.228.0/22 gw $cncgw metric 1 route $option -net 122.10.232.0/21 gw $cncgw metric 1 route $option -net 122.10.240.0/22 gw $cncgw metric 1 route $option -net 122.11.32.0/19 gw $cncgw metric 1 route $option -net 122.13.0.0/16 gw $cncgw metric 1 route $option -net 122.49.0.0/18 gw $cncgw metric 1 route $option -net 122.96.0.0/15 gw $cncgw metric 1 route $option -net 122.102.0.0/20 gw $cncgw metric 1 route $option -net 122.112.0.0/19 gw $cncgw metric 1 route $option -net 122.112.64.0/19 gw $cncgw metric 1 route $option -net 122.113.0.0/19 gw $cncgw metric 1 route $option -net 122.113.32.0/20 gw $cncgw metric 1 route $option -net 122.115.32.0/19 gw $cncgw metric 1route $option -net 122.144.128.0/21 gw $cncgw metric 1 route $option -net 122.144.142.0/23 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.200.64.0/18 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.98.0.0/17 gw $cncgw metric 1 route $option -net 123.99.224.0/19 gw $cncgw metric 1 route $option -net 123.100.0.0/19 gw $cncgw metric 1 route $option -net 123.103.2.0/23 gw $cncgw metric 1 route $option -net 123.103.4.0/22 gw $cncgw metric 1 route $option -net 123.103.8.0/21 gw $cncgw metric 1 route $option -net 123.103.16.0/21 gw $cncgw metric 1 route $option -net 123.103.24.0/22 gw $cncgw metric 1 route $option -net 123.103.28.0/23 gw $cncgw metric 1 route $option -net 123.103.30.0/24 gw $cncgw metric 1 route $option -net 123.103.32.0/21 gw $cncgw metric 1 route $option -net 123.103.56.0/21 gw $cncgw metric 1 route $option -net 123.103.64.0/18 gw $cncgw metric 1 route $option -net 123.108.208.0/22 gw $cncgw metric 1 route $option -net 123.108.212.0/23 gw $cncgw metric 1 route $option -net 123.108.216.0/23 gw $cncgw metric 1 route $option -net 123.108.220.0/22 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.152.0.0/13 gw $cncgw metric 1 route $option -net 123.176.80.0/22 gw $cncgw metric 1 route $option -net 123.176.84.0/24 gw $cncgw metric 1 route $option -net 123.188.0.0/14 gw $cncgw metric 1 route $option -net 123.196.0.0/16 gw $cncgw metric 1 route $option -net 123.232.0.0/14 gw $cncgw metric 1 route $option -net 123.253.132.0/23 gw $cncgw metric 1 route $option -net 124.6.64.0/18 gw $cncgw metric 1 route $option -net 124.14.192.0/19 gw $cncgw metric 1 route $option -net 124.42.192.0/18 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 1route $option -net 124.70.0.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.192.0.0/15 gw $cncgw metric 1 route $option -net 124.202.128.0/17 gw $cncgw metric 1 route $option -net 124.203.192.0/18 gw $cncgw metric 1 route $option -net 124.205.0.0/16 gw $cncgw metric 1 route $option -net 124.207.0.0/16 gw $cncgw metric 1 route $option -net 124.240.88.0/21 gw $cncgw metric 1 route $option -net 124.240.96.0/19 gw $cncgw metric 1 route $option -net 124.240.128.0/18 gw $cncgw metric 1 route $option -net 124.248.32.0/19 gw $cncgw metric 1 route $option -net 124.249.0.0/17 gw $cncgw metric 1 route $option -net 125.32.0.0/12 gw $cncgw metric 1 route $option -net 125.97.240.0/20 gw $cncgw metric 1 route $option -net 125.208.24.0/21 gw $cncgw metric 1 route $option -net 125.211.0.0/16 gw $cncgw metric 1 route $option -net 125.214.104.0/21 gw $cncgw metric 1 route $option -net 125.214.112.0/20 gw $cncgw metric 1 route $option -net 125.215.0.0/18 gw $cncgw metric 1 route $option -net 138.32.244.0/22 gw $cncgw metric 1 route $option -net 139.170.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.101.208.0/24 gw $cncgw metric 1 route $option -net 140.206.0.0/15 gw $cncgw metric 1 route $option -net 140.210.0.0/21 gw $cncgw metric 1 route $option -net 140.242.216.0/24 gw $cncgw metric 1 route $option -net 144.36.146.0/23 gw $cncgw metric 1 route $option -net 144.211.80.0/24 gw $cncgw metric 1 route $option -net 144.211.138.0/24 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 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 1route $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 159.153.120.0/22 gw $cncgw metric 1 route $option -net 160.83.109.0/24 gw $cncgw metric 1 route $option -net 161.207.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 168.159.144.0/21 gw $cncgw metric 1 route $option -net 168.159.152.0/22 gw $cncgw metric 1 route $option -net 168.159.156.0/23 gw $cncgw metric 1 route $option -net 168.159.158.0/24 gw $cncgw metric 1 route $option -net 168.160.224.0/19 gw $cncgw metric 1 route $option -net 170.252.152.0/21 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 171.116.0.0/14 gw $cncgw metric 1 route $option -net 171.120.0.0/13 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.102.132.0/22 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.86.0.0/16 gw $cncgw metric 1 route $option -net 180.89.128.0/19 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.150.161.0/24 gw $cncgw metric 1 route $option -net 180.150.162.0/23 gw $cncgw metric 1 route $option -net 180.150.164.0/22 gw $cncgw metric 1 route $option -net 180.184.0.0/15 gw $cncgw metric 1 route $option -net 180.186.0.0/16 gw $cncgw metric 1 route $option -net 180.188.0.0/17 gw $cncgw metric 1 route $option -net 180.210.236.0/22 gw $cncgw metric 1route $option -net 182.18.0.0/19 gw $cncgw metric 1 route $option -net 182.48.96.0/20 gw $cncgw metric 1 route $option -net 182.48.112.0/21 gw $cncgw metric 1 route $option -net 182.50.8.0/22 gw $cncgw metric 1 route $option -net 182.50.112.0/21 gw $cncgw metric 1 route $option -net 182.50.120.0/22 gw $cncgw metric 1 route $option -net 182.50.124.0/23 gw $cncgw metric 1 route $option -net 182.54.0.0/17 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/19 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 192.11.23.0/24 gw $cncgw metric 1 route $option -net 192.11.26.0/24 gw $cncgw metric 1 route $option -net 192.11.39.0/24 gw $cncgw metric 1 route $option -net 192.139.135.0/24 gw $cncgw metric 1 route $option -net 192.139.136.0/24 gw $cncgw metric 1 route $option -net 192.163.11.0/24 gw $cncgw metric 1 route $option -net 192.170.79.0/24 gw $cncgw metric 1 route $option -net 194.138.203.0/24 gw $cncgw metric 1 route $option -net 202.4.252.0/22 gw $cncgw metric 1 route $option -net 202.38.8.0/21 gw $cncgw metric 1 route $option -net 202.38.147.0/24 gw $cncgw metric 1 route $option -net 202.38.161.0/24 gw $cncgw metric 1 route $option -net 202.38.164.0/22 gw $cncgw metric 1 route $option -net 202.43.144.0/20 gw $cncgw metric 1 route $option -net 202.69.4.0/23 gw $cncgw metric 1 route $option -net 202.70.0.0/19 gw $cncgw metric 1 route $option -net 202.75.208.0/21 gw $cncgw metric 1 route $option -net 202.77.39.0/24 gw $cncgw metric 1 route $option -net 202.84.16.0/24 gw $cncgw metric 1 route $option -net 202.85.208.0/20 gw $cncgw metric 1 route $option -net 202.91.176.0/21 gw $cncgw metric 1 route $option -net 202.91.184.0/23 gw $cncgw metric 1 route $option -net 202.91.186.0/24 gw $cncgw metric 1 route $option -net 202.91.190.0/23 gw $cncgw metric 1 route $option -net 202.91.224.0/20 gw $cncgw metric 1 route $option -net 202.93.252.0/22 gw $cncgw metric 1 route $option -net 202.94.1.0/24 gw $cncgw metric 1 route $option -net 202.95.0.0/19 gw $cncgw metric 1 route $option -net 202.96.0.0/18 gw $cncgw metric 1。