05-29-2012 11:58 PM - edited 05-30-2012 12:00 AM
Hi,
I have a problem / misconfiguration with my firewall. We have a fixed adsl IP on the wan and a vlan for the LAN. We have port 3389 connected directly to a pc from the outside wan. But now I have configured Dynamic VPN as per http://kb.juniper.net/library/CUSTOMERSERVICE/GLOB
Can someone see why this is not working?
Greetings,
Thomas
Solved! Go to Solution.
05-30-2012 04:38 AM
My guess would be that the NAT rule for RDP is being applied regardless. I have the following in my config before any destination NAT rules:
rule-set untrust-to-trust {
from zone untrust;
rule IPSECLinks {
# Don't apply NAT to any incoming private (IPSEC) link connections to our LAN
match {
source-address-name RFC1918; # you can make this 10.10.10.0/24.
destination-address-name HomeLAN; # and this would be 192.168.1.0/24
}
then {
destination-nat off;
}
}
}
05-30-2012 08:31 AM
Try the following. The traffic for 192.168.1.101 is getting routed down the VPN by the pushed routes from the SRX.
dynamic-vpn {
access-profile dyn-vpn-access-profile;
clients {
all {
remote-protected-resources {
192.168.1.0/24;
}
remote-exceptions {
192.168.1.101;
}
ipsec-vpn dyn-vpn;
user {
PcManager;
geelen;
}
}
}
06-05-2012 07:25 AM