[linux网络] iptables+ip route 实现双线上网流量分割

本文介绍了在一个包含多个子网的复杂网络环境中如何配置路由器。包括创建路由表、添加不同优先级的路由条目、设置特定源地址的数据包转发规则等。通过具体的命令示例,展示了如何实现内外网之间的高效数据传输。
1 网络结构
  a 内网机器
    client1 : 192.168.28.20/24 gateway 192.168.28.1
    client2 : 192.168.28.120/24 gateway 192.168.28.1
 
  b 路由器
    eth0 192.168.28.1/24
    eth1 119.161.232.156/29 gateway 119.161.232.154
    eth2 192.168.1.91/24    gateway 192.168.1.1



2 路由器配置
 
  a 创建路由表
    echo 150 fast >> echo 150 fast >> /etc/iproute2/rt_tables
    echo 150 fast >> echo 150 fast >> /etc/iproute2/rt_tables

  b 添加路由
    ip route add 119.161.232.152/29 dev eth1 src 119.161.232.156 table fast
    ip route add 192.168.28.0/24 dev eth0 src 192.168.28.1 table fast
    ip route add default via 119.161.232.154 dev eth1 table fast

    ip route add 192.168.1.0/24 dev eth2 src 192.168.1.91 table slow
    ip route add 192.168.28.0/24 dev eth0 src 192.168.28.1 table slow
    ip route add default via 192.168.1.1 dev eth2 table slow
 
  c 删除默认路由
    ip route del default

  d 添加规则
    ip rule add from 192.168.1.0/24 table slow
    ip rule add from 119.161.232.152/29 table fast

  e 设置过滤
    ip rule add from 192.168.28.40 table slow
    iptables -t nat -A POSTROUTING -s 192.168.28.40 -j SNAT --to 192.168.1.91

    ip rule add from 192.168.28.120 table fast
    iptables -t nat -A POSTROUTING -s 192.168.28.120 -j SNAT --to 119.161.232.156
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值