Hello all. I am attemption to get a source based route to work and am failing miserably. Can someone please help? I have attached what I believe is the relavent portions of my configuration below. I'm attemption to have all of my networks default gateway set to 10.200.0.1 except for eth1.2 which I want to be directed to towards 10.200.0.2. the below is not working. Please unconfuse me
modify VOIP_MODIFY_SOURCE {
rule 10 {
action modify
description "Send VOIP Traffic To Different Interface"
modify {
table 1
}
source {
address 10.2.0.0/24
}
}
table 1 {
route 0.0.0.0/0 {
next-hop 10.200.0.2 {
}
}
ethernet eth1 {
description "Fair Network"
duplex auto
redirect ifb1
speed auto
traffic-policy {
out DOWNLOAD
}
vif 2 {
address 10.2.0.1/24
description VOIP
firewall {
in {
modify VOIP_MODIFY_SOURCE
}
}
mtu 1500
}
Thanks a ton!