Slyar-route(config)#lineconsole0Slyar-route(config-line)#passwordslyar.comSlyar-route(config-line)#loginSlyar-route(config-line)#exitSlyar-route(config)#linevty04Slyar-route(config-line)#passwordslyar.comSlyar-route(config-line)#loginSlyar-route(config-line..
分类:
Web程序 时间:
2014-11-03 01:37:17
阅读次数:
1565
route -p add 192.168.9.0 mask 255.255.255.0 192.168.10.83要添加默认网关地址为192.168.12.1 的默认路由,请键入: route add 0.0.0.0 mask 0.0.0.0192.168.12.1要添加目标为10.41.0.0,子...
分类:
其他好文 时间:
2014-11-02 20:56:33
阅读次数:
291
Usage:ip[OPTIONS]OBJECT{COMMAND|help}
ip[-force][-batchfilename
whereOBJECT:={link|addr|route|rule|neigh|ntable|tunnel|
maddr|mroute|monitor|xfrm}
OPTIONS:={-V[ersion]|-s[tatistics]|-r[esolve]|
-f[amily]{inet|inet6|ipx|dnet|link}|
-o[neline]|-t[imestamp]}
..
分类:
系统相关 时间:
2014-11-01 06:22:34
阅读次数:
326
Usage:ip[OPTIONS]OBJECT{COMMAND|help}
ip[-force][-batchfilename
whereOBJECT:={link|addr|route|rule|neigh|ntable|tunnel|
maddr|mroute|monitor|xfrm}
OPTIONS:={-V[ersion]|-s[tatistics]|-r[esolve]|
-f[amily]{inet|inet6|ipx|dnet|link}|
-o[neline]|-t[imestamp]}
..
分类:
系统相关 时间:
2014-11-01 06:20:06
阅读次数:
347
Basic ControllersInstead of defining all of your route-level logic in a singleroutes.phpfile, you may wish to organize this behavior using Controller ...
分类:
其他好文 时间:
2014-11-01 00:57:16
阅读次数:
298
写你的第一个routes(路由)在我们的app/routes.php添加两个路由1 Route::get('/', function()2 {3 return "All cats";4 });5 6 Route::get('cats/{id}',function($id){7 ret...
分类:
其他好文 时间:
2014-10-28 23:34:59
阅读次数:
165
FORWARD好了,我们接着往下走,这个包已经过了两个PREROUTING链了,这个时候,出现了一个分支转折的地方,也就是图中下方的那个菱形(FORWARD),转发!这里有一个对目的地址的判断(这里同样说明了PREROUTING一定要在最先,不仅要在route box之前,甚至是这个对目的地址的判断...
分类:
其他好文 时间:
2014-10-28 15:06:14
阅读次数:
114
linux 修改默认路由2011-06-21 09:25:05分类:Linux[root@node2 ~]# route -n[root@node2 ~]# route del -net 0.0.0.0 netmask 0.0.0.0 或者 ([root@node2 ~]# route del de...
分类:
其他好文 时间:
2014-10-27 19:19:06
阅读次数:
578
There areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas tank and it costscost[...
分类:
编程语言 时间:
2014-10-27 00:17:09
阅读次数:
283
ASP.NET Web API路由,简单来说,就是把客户端请求映射到对应的Action上的过程。在"ASP.NET Web API实践系列03,路由模版, 路由惯例, 路由设置"一文中,体验了通过模版、惯例、HTTP方法来设置路由,这种做法的好处是把路由模版统一放在了App_Start文件夹下的We...