I have followed the below guide, and I can connect to my network remotely. I'm only able to ping devices on my internal network, and external network. I'm unable to resolve DNS queries and no other ports are working, https, 8080, etc. Almost acting like ICMP is the only protocol allowed to work
https://help.ubnt.com/hc/en-us/articles/204959404-EdgeMAX-Set-up-L2TP-over-IPsec-VPN-server
anyone have this issue, thougths?
Here is my config
ipsec {
auto-firewall-nat-exclude disable
ipsec-interfaces {
interface eth0
}
logging {
log-level 1
}
nat-networks {
allowed-network 0.0.0.0/0 {
}
}
nat-traversal enable
}
l2tp {
remote-access {
authentication {
local-users {
username jason {
password MyPassword
}
}
mode local
}
client-ip-pool {
start 172.16.10.10
stop 172.16.10.20
}
dns-servers {
server-1 8.8.8.8
}
ipsec-settings {
authentication {
mode pre-shared-secret
pre-shared-secret MyPassword
}
ike-lifetime 3600
}
mtu 1492
outside-address <my external IP>
}
}
[edit]
Jason