Displaying 3 results from an estimated 3 matches for "isp_2".
Did you mean:
isp2
2005 Dec 24
1
Simple routing configuration
...h? I''ve tried setting up the routing using ip route, using
the command below, but to no avail. When I used these commands, I did not
change any of my existing firewall configuration. Here are the ip route
commands:
echo "101 ISP_1" >> /etc/iproute2/rt_tables
echo "102 ISP_2" >> /etc/iproute2/rt_tables
ip route add 192.168.4.0/22 dev eth2 src 192.168.7.253 table ISP_1
ip route add default via 192.168.100.253 table ISP_1
ip route add 192.168.0.0/22 dev eth1 src 192.168.3.253 table ISP_2
ip route add default via 192.168.20.253 table ISP_2
ip rule add from 19...
2006 Jan 15
1
Network configuration
...68.100.254 (ISP)
eth1
ip: 192.168.3.253/22
gw: 192.168.20.253 (eth3)
eth2
ip: 192.168.7.253/22
gw: 192.168.100.253 (eth0)
eth3
ip: 192.168.20.253/24
gw: 192.168.20.254 (ISP)
I have tried setting up routing using these commands:
echo "ISP_1" >> /etc/iproute2/rt_tables
echo "ISP_2" >> /etc/iproute2/rt_tables
ip route add 192.168.4.0/22 dev eth2 src 192.168.7.253 table ISP_1
ip route add default via 192.168.100.253 table ISP_1
ip route add 192.168.0.0/22 dev eth1 src 192.168.3.253 table ISP_2
ip route add default via 192.168.20.253 table ISP_2
ip rule add from 19...
2005 Nov 10
0
Routing Configuration
...--------------------
| eth2 eth0 |
----- | 192.168.7.253 ---> 192.168.100.253 | ISP_1 -----
| |------| 255.255.252.0 255.255.255.0 |-------| |
| | | | |
|
| LAN | | ROUTER | | WEB |
| | | | ISP_2 | |
| |------| eth1 eth3 |-------| |
----- | 192.168.3.253 ----> 192.168.20.253 | -----
| 255.255.252.0 255.255.255.0 |
--------------------------------------
echo "ISP_1" >> /etc/iproute2/rt_tables
echo "ISP_2" >...