Questions tagged «ip-forward»

2
如何将我的Linux机顶盒设置为路由器以转发IP数据包?
我正在进行有关IP数据包转发的网络实验,但是我不知道为什么它能工作。 我有一台具有两个网络接口eth0和eth1的Linux机器,它们都具有静态IP地址(eth0:192.168.100.1,eth1:192.168.101.2)。 我的目标很简单,我只想将192.168.10.0/24子网中的eth1的IP数据包转发到eth0,并将目的192.168.101.0/24子网中的eth0的IP数据包转发到eth1。 我通过以下方式打开了IP转发: sysctl -w net.ipv4.ip_forward=1 我的路由表是这样的: # route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.100.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 192.168.101.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1 但是,当我尝试从192.168.100.25 ping到192.168.101.47时,它不起作用。

4
如何配置UFW以允许IP转发?
我的家庭服务器上安装了UFW,OpenVPN和Virtualbox。我为虚拟机来宾(vboxnet0)设置了一个仅主机的网络,其IP范围为10.0.1.0,在OpenVPN连接的另一端配置了另一个IP范围为10.0.0.0。 IP转发是在主机上配置的,因此,禁用 UFW时,它们可以相互通信而不会出现任何问题。但是,我想运行UFW,因为此主机可以通过Web访问,并且我需要一些访问控制。 如何配置UFW允许此类流量? 我尝试了以下各种组合:ufw allow allow in|out on vboxnet0|tun0没有成功。 我的UFW规则是: root@gimli:~# ufw status Status: active To Action From -- ------ ---- 22 ALLOW Anywhere Anywhere ALLOW 10.0.0.0/16 Anywhere on vboxnet0 ALLOW Anywhere Anywhere on tun0 ALLOW Anywhere Anywhere ALLOW OUT Anywhere on vboxnet0 Anywhere ALLOW OUT Anywhere on tun0 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.