You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
# 第一步:使用
|
|
|
|
|
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
|