#!/bin/sh
# simple example on how to route traffic for a 192.168.0.0/24 range via specific gateway
# and route rest of traffic via default gw
# echo 200 INET2 >> /etc/iproute2/rt_tables
ip rule add from 192.168.0.0/24 table INET2
ip route add default via 192.168.0.1 dev xenbr1 table INET2

