12-08-2010 07:24 PM - edited 12-08-2010 07:38 PM
Hi JNet experts,
I am trying to setup the dynamic vpn as non-split vpn. All user traffics will forward through the vpn tunnel and then route to internet from the SRX. Is it possible to do that?
Thanks,
rotearc
12-12-2010 06:15 PM
I got it to work, it is quite interesting.. I have the vpn terminated at vpn zone, and I need to setup a NAT and firewall policy to allow from untrust zone to untrust zone. Also, the remote resource is 0.0.0.0/0 in my case.
from-zone untrust to-zone vpn {
policy policy_in_wizard_dyn_vpn {
match {
source-address any;
destination-address any;
application any;
}
then {
permit {
tunnel {
ipsec-vpn wizard_dyn_vpn;
}
}
}
}
}
from-zone untrust to-zone untrust {
policy stupid-vpn-poilicy {
match {
source-address 10.10.3.248/29;
destination-address any;
application any;
}
then {
permit;
}
}
}