Linux路由转发简介
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux路由转发简介相关的知识,希望对你有一定的参考价值。
要求:
需要让Linux01通过Linux02访问Linux03,把Linux02转换成一个路由器。
实施步骤:
(1) 准备环境:Linux01(ip:10.0.0.10)Linux02(双网卡eth0:10.0.0.11 eth1:10.0.1.11)Linux03(ip:10.0.1.10)
(2) 配置Linux01,添加路由:route add -net 10.0.1.0/24 gw10.0.0.11
(3) 配置Linux02,开启路由转发功能:echo "1" >/proc/sys/net/ipv4/ip_forward
(4) 配置Linux03,添加路由:route add -net 10.0.0.0/24 gw10.0.1.11
(5) 关闭所有防火墙
Linux01:
[[email protected] ~]# traceroute -n 10.0.1.10 traceroute to 10.0.1.10 (10.0.1.10), 30 hops max, 60 byte packets 1 10.0.0.11 0.188 ms 0.141 ms 0.113 ms 2 10.0.1.10 0.676 ms 1.081 ms 1.048 ms [[email protected] ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 10.0.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 10.0.1.0 10.0.0.11 255.255.255.0 UG 0 0 0 eth0 169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth0
Linux03:
[[email protected] ~]# traceroute -n 10.0.0.10 traceroute to 10.0.0.10 (10.0.0.10), 30 hops max, 60 byte packets 1 10.0.1.11 3.137 ms 3.056 ms 3.000 ms 2 10.0.0.10 4.003 ms 3.981 ms 3.948 m [[email protected] ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 10.0.0.0 10.0.1.11 255.255.255.0 UG 0 0 0 eth0 10.0.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 169.254.0.0 0.0.0.0 255.255.0.0 U 1002 0 0 eth0
本文出自 “风雨山林” 博客,请务必保留此出处http://fengyushanlin.blog.51cto.com/12092006/1959544
以上是关于Linux路由转发简介的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段