ChinaUnix.net
相关文章推荐:

openwrt tunnel 更新

ip tunnel 命令中有个 prl 是什么意思。谢谢帮忙 ip tunnel prl prl-default 202.112.26.246 dev is_sjtu

by hankzheng888 - 网络技术 - 2011-09-17 16:00:28 阅读(2702) 回复(2)

相关讨论

tunnel都还是在bell的时候的事了,今天本来是想温习下的,没想到忘记的一干二级!!!惭愧惭愧. linux 支持的 tunnel 有 ipip gre sit 其他非内核隧道这几种。 ipip 需要内核模块 ipip.ko 下面的描述说出了ipip的特点。 简单之极!但是你不能通过IP-in-IP隧道转发广播或者IPv6数据包。你只是连接了两个一般情况下无法直接通讯的IPv4网络而已。至于兼容性,这部分代码已经有很长一段历史了,它的兼容性可以上溯到1.3版的内核。据我...

by ubuntuer - Linux文档专区 - 2009-09-02 16:03:38 阅读(1016) 回复(0)

一个隧道是一个点对点链路,必须在两端进行配置 隧道端点定义隧道传输的源地址和目的地址。可以给隧道接口分配另一个地址用于被传输的或者承载通信量。 配置 1、在每一端的路由器上创建一个隧道接口 (global)interface tunnel * 隧道接口号可以任意选择 2、配置隧道的源地址 (interface)tunnel source {ip-addr | type number} 源地址可以是特定的IP地址或者是物理端口 3、配置隧道的目的地址 (interface)tunnel destination {host...

by iamanirse - 网络技术文档中心 - 2009-05-26 12:28:22 阅读(1346) 回复(0)

先看看SSH协议的说明: http://zh.wikipedia.org/w/index.php?title=SSH&variant=zh-cn linux端口映射 ssh -C -g [email=root@127.0.0.1]root@127.0.0.1[/email] -L 5000:61.235.139.123:5000 输入机器的root密码 后台执行:ssh -C -f -N -g [email=root@127.0.0.1]root@127.0.0.1[/email] -L 5000:61.235.139.123:5000 另: ssh -C -f -N -g -R remote_port:local:port user@remotehost 可 以将远端服务器一个端口re...

by nianzong - Linux文档专区 - 2009-03-06 14:42:09 阅读(1249) 回复(0)

cisco 的隧道组有点不明白,不知道哪位兄弟能帮忙解释下,最好有个实例,谢谢

by nczch - 网络技术 - 2007-04-23 09:44:15 阅读(1574) 回复(0)

cisco 的隧道组有点不明白,不知道哪位兄弟能帮忙解释下,最好有个实例,谢谢

by nczch - 企业网管技术交流区 - 2007-04-23 09:44:15 阅读(3345) 回复(0)

不知道是网上的文档说得乱七八糟还是咱的理解有偏差,SSH tunnel按网上说法没弄成,经过不断尝试,终于成功了。 ssh -2 -L local_host:local_port:remote_host:remote_port -N -f remote_host 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/8563/showart_212159.html

by 火鸡 - Linux文档专区 - 2006-12-08 14:07:02 阅读(889) 回复(0)

tunnel mode provides the protection of an entire IP packet by treating it as an AH or ESP payload. With tunnel mode, an entire IP packet is encapsulated with an AH or ESP header and an additional IP header. The IP addresses of the outer IP header are the tunnel endpoints, and the IP addresses of the encapsulated IP header are the ultimate source and destination addresses. AH tunnel mode As shown ...

by bu - 网络技术文档中心 - 2006-10-12 15:23:04 阅读(634) 回复(0)

谁知道路由器中tunnel命令怎么解释,应用 ip route 10.0.0.0 255.0.0.0 109.10.7.1 ip route 10.0.0.0 255.0.0.0 tunnel11 30 象上面的例子一样, tunnel11相当于一个有ip地址的以太口是么?

by whd - 网络技术 - 2004-09-07 14:29:04 阅读(1034) 回复(2)

谁知道路由器中tunnel命令怎么解释,应用\r\nip route 10.0.0.0 255.0.0.0 109.10.7.1\r\nip route 10.0.0.0 255.0.0.0 tunnel11 30\r\n\r\n象上面的例子一样, tunnel11相当于一个有ip地址的以太口是么?

by whd - 企业网管技术交流区 - 2004-09-07 14:29:04 阅读(2714) 回复(2)

现在openwrt的信道 auto 模式总是自动锁定在 1 上,其实这个是很久的问题,这里是启动脚本 修改则个加上自己的信道选择算法 就可以自动选择信道了[code]#!/bin/sh # Copyright (C) 2006 openwrt.org DEBUG=off . /lib/functions.sh usage() { cat <

by forgaoqiang - 嵌入式开发 - 2014-03-20 13:18:46 阅读(11484) 回复(7)