राउटर के रूप में लिनक्स: मेरे पास 3 इंटरनेट प्रदाता हैं, प्रत्येक का अपना मॉडेम है।
Provider1 , जो गेटवे पता 192.168.1.1 है
linux रूटर से जुड़े eth1 /192.168.1.2
प्रदाता 2 , गेटवे पता 192.168.2.1
लिनक्स राउटर एथ 2 / 192.168.2.2 से जुड़ा है
प्रोवाइडर 3 , गेटवे एड्रेस 192.168.3.1
लिनक्स राउटर एथ 3 / 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 के माध्यम से अलग-अलग गेटवे पर जाना चाहूंगा।
क्लाइंट नेटवर्क का इंटरफ़ेस eth0 / 10.0.0.1 है, जो सभी क्लाइंट के लिए डिफ़ॉल्ट गेटवे है।
उदाहरण के लिए:
10.0.0.11 को प्रदाता 1 @ eth1
10.0.0.12 को प्रदाता 2 @ 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