阿里云添加路由的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
阅读排行
- 1win2003 service pack2 IIS 无法复制CONVLOG.EXE CONVLOG.EX_问题处理
- 2Windows Server 2008 R2 DNS 服务器迁移方法
- 3win2008 IP安全策略关闭端口、禁止ping、修改远程连接3389端口、开放指定端口
- 4man -f/-k [keyword]在fedora 29 中报错nothing appropriate
- 5IP策略实现服务器禁止Ping
- 6win2003开机自动登录后锁定
- 7本地策略提示不能确定应用到此机器的组策略安全性设置的解决方法
- 8限制Win9X/NT系统功能二十六招
- 9windows10彻底关闭自动更新【绝对可行】
- 10win2003 3389手工修改方法