This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 第一步:使用
ifconfig 查看WIFI接入的网关是多少,比如是 192.168.1.1
# 第二步: 删除0.0.0.0的这个路由
route delete 0.0.0.0
# 第三步:外网上网走电教馆的WIFI ,后面的192.168.1.1是上面第一步测出来的网关,根据实际情况进行修改
route add -p 0.0.0.0 mask 0.0.0.0 192.168.1.1
# 第四步:教育内网走吉视传媒的专网
route add -p 172.18.0.0 mask 255.255.0.0 172.18.5.1