Linux เป็นเราเตอร์: ฉันมีผู้ให้บริการอินเทอร์เน็ต 3 รายแต่ละรายมีโมเด็มของตัวเอง
Provider1ซึ่งเป็นเกตเวย์แอดเดรส 192.168.1.1
เชื่อมต่อกับ linux router eth1 /192.168.1.2
Provider2 ที่อยู่เกตเวย์ 192.168.2.1
เชื่อมต่อกับเราเตอร์ linux eth2 /192.168.2.2
Provider3 ที่อยู่เกตเวย์ 192.168.3.1
เชื่อมต่อกับเราเตอร์ linux eth3 /192.168.3.2
________
+------------+ /
| | |
+----------------------+ Provider 1 +--------|
__ |192.168.1.2 |192.168.1.1 | /
___/ \_ +------+-------+ +------------+ |
_/ \__ | eth1 | +------------+ /
/ \ eth0| |192.168.2.2 | | |
|Client network -----+ ROUTER eth2|--------------+ Provider 2 +------| Internet
\10.0.0.0/24 __/ | | |192.168.2.1 | |
\__ __/ | eth3 | +------------+ \
\___/ +------+-------+ +------------+ |
|192.168.3.2 | | \
+----------------------+ Provider 3 +-------|
|192.168.3.1 | |
+------------+ \________
ฉันต้องการกำหนดเส้นทางลูกค้าในเครือข่าย 10.0.0.0/24 ตามแหล่ง IP ไปยังเกตเวย์ที่แตกต่างกัน
อินเตอร์เฟสไปยังเครือข่ายลูกค้าคือeth0 / 10.0.0.1 ซึ่งเป็นเกตเวย์เริ่มต้นสำหรับลูกค้าทั้งหมด
ตัวอย่างเช่น:
10.0.0.11 ควรถูกส่งไปที่ Provider1 @ eth1
10.0.0.12 ควรถูกส่งไปที่ Provider2 @ eth2
... และอื่น ๆ ...
ฉันคิดว่าฉันจำเป็นต้องใช้ip route
และiptables
สำหรับ SNAT แต่ฉันยังไม่เข้าใจวิธีการ
นี่คือสคริปต์ที่ฉันมีจนถึงตอนนี้
เปิดใช้งานการส่งต่อ ipv4
#!/bin/bash
# flush tables
ip route flush table connection1
ip route flush table connection2
ip route flush table connection3
# add the default gateways for each table
ip route add table connection1 default via 192.168.1.1
ip route add table connection2 default via 192.168.2.1
ip route add table connection3 default via 192.168.3.1
# add some IP addresses for marking
iptables -t mangle -A PREROUTING -s 10.0.0.11 -j MARK --set-mark 1
iptables -t mangle -A PREROUTING -s 10.0.0.12 -j MARK --set-mark 2
iptables -t mangle -A PREROUTING -s 10.0.0.13 -j MARK --set-mark 3
# add the source nat rules for each outgoing interface
iptables -t nat -A POSTROUTING -o eth1 -j SNAT --to-source 192.168.1.2
iptables -t nat -A POSTROUTING -o eth2 -j SNAT --to-source 192.168.2.2
iptables -t nat -A POSTROUTING -o eth3 -j SNAT --to-source 192.168.3.2
# link routing tables to connections (?)
ip rule add fwmark 1 table connection1
ip rule add fwmark 2 table connection2
ip rule add fwmark 3 table connection3
#default route for anything not configured above should be eth2