You are not logged in.
I used to host some apps on my home PC which is behind router with port forwarding set up. After Roskomnadzor's ban on github I've signed up to ExpressVPN and faced that after connecting to VPN (via its app) I'm no longer available to accept connections coming from router. Is there any way to fix this without modifying router's firmware? 5.15.13-arch1-1, router is wnr612v2.
Offline
You have ExprressVPN installed on the computer, which is hosting the apps?
I think the problem is, that the connection are acceptet, but the answer are routed through the VPN and that breaks the connection.
For testing purpose, I would try:
Assuming your PC have this IP: 192.168.100.10/24 on eth0, your router 192.168.100.1
# add new IP and remove old
ip addr add 192.168.100.11/24 dev eth0
ip addr del 192.168.100.10/24 dev eth0
# start VPN
#add forwared IP again
ip addr add 192.168.100.10/24 dev eth0
# mark old ip address
ip rule add from 192.168.100.10/24 table 255
#route old ip addr
ip route add 0.0.0.0/0 via 192.168.100.1 dev eth0 table 255
#make some tests
ping -c 1 192.168.100.1 #should fail, because this goes through VPN
ping -c 1 -I 192.168.100.11 #should fail, because this goes through VPN
ping -c 1 -I 192.168.100.10 #should work, because this goes not through VPN
Everything: untestet and may be wrong :-)
Offline