BlakeNagel07
Dabbler
- Joined
- Jan 4, 2016
- Messages
- 31
As the title says, i am running OpenVPN inside my Transmission Jail. With doing so i can no longer connect to the webGUI remotely outside of the house "i.e. while at work"
there is a firewall running for transmission to only download will connected through VPN and i know this is whats blocking my remote connection.
My question is, can i add something to the firewall that would allow access from a specific IP address "i.e. my work IP" to connect to the webGUI remotely?
Below the firewall settings.
there is a firewall running for transmission to only download will connected through VPN and i know this is whats blocking my remote connection.
My question is, can i add something to the firewall that would allow access from a specific IP address "i.e. my work IP" to connect to the webGUI remotely?
Below the firewall settings.
Code:
#!/bin/bash # Flush out the list before we begin ipfw -q -f flush # Set rules command prefix cmd="ipfw -q add" vpn="tun1" # allow all local traffic on the loopback interface $cmd 00001 allow all from any to any via lo0 # allow any connection to/from VPN interface $cmd 00010 allow all from any to any via $vpn # allow connection to/from LAN by Transmission $cmd 00101 allow all from me to 10.0.0.1/24 uid transmission $cmd 00102 allow all from 10.0.0.1/24 to me uid transmission # deny any Transmission connection outside LAN that does not use VPN