欢迎来到代码驿站!

Windows

当前位置:首页 > 服务器 > Windows

阿里云添加路由的Windows批处理文件

时间:2021-06-11 08:11:59|栏目:Windows|点击:

发现一段很好的学习bat程序的示例代码,分享给大家,具体代码如下:

@echo off
route print -4 "10.0.0.0" | find "10.0.0.0" > route_list
set gw=
for /F "tokens=1-5" %%a in ('type route_list') do (
 if not "%%c" == "" ( set gw=%%c )
)
if "%gw%" == "" ( echo "fail to get eth0 default gw" && goto error)
route print -4 100.64.0.0 | find "%gw%" > NUL
if not "%errorlevel%" == "0" (
  route -p add 100.64.0.0 mask 255.192.0.0 %gw% > NUL 2>&1
)
if not "%errorlevel%" == "0" ( echo "faild to add route 100.64.0.0/10" && goto error)
:success
del route_list
echo "add 100.64.0.0/10 success !"
timeout 10
exit 0
:error
timeout 10
exit 1

上一篇:Win8.1系统下搭建IIS8.5+PHP5.5.4运行环境教程

栏    目:Windows

下一篇:iis7.5中让html与shtml一样支持include功能(添加模块映射)

本文标题:阿里云添加路由的Windows批处理文件

本文地址:http://www.codeinn.net/misctech/139998.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有