I suppose thats true, its been a while since I set that part up. But changing that group to default fixed it.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Patrick M. Hausen on March 25, 2025, 04:08:28 PMIt's LAN address, not LAN interface. Sorry, my bad.I'm not entirely sure how but I have that part working now. But I am facing another issue. I also want to use Unbound in conjunction with AGH. I configured AGH private reverser to Unbound on port 53530, but I have no internet access. According to AGH, when I test the upstream, it reports as working correctly. I did not change anything in my Unbound setup as it was working fine before. So I'm not sure what I am missing now with regard to not being able to have internet access.
Quote from: Patrick M. Hausen on March 25, 2025, 07:42:42 AMThe first two rules redirect all packets to the WAN_Failover gateway (group?) so you cannot communicate with the firewall locally.The WAN_Failover is a group as I have 2 gateways, which one serves as a backup. However, I'm a bit confused about the destination. I have a LAN net, and LAN address for destination but not LAN interface. I tried LAN net, but no luck. So I changed it to This Firewall and inverted as you suggested above all other rules, and still no luck.
Place a rule for TCP, destination "LAN interface", destination port "3000/HBCI" above all others. Without the gateway setting, of course.
EDIT: or add an inverted destination to your rules and replace destination "any" with !"This Firewall".
fetch -o /usr/local/etc/pkg/repos/mimugmail.conf https://www.routerperformance.net/mimugmail.conf
bind_host: 0.0.0.0
bind_port: 3000
users:
- name: admin
password: *****************
sockstat -4 | grep 3000
root AdGuardHom 14702 115 tcp46 *:3000
Quote from: cookiemonster on August 23, 2022, 05:32:34 PM1 - read on the basics of networking. The OPN Documentation or any other firewall documentation is a good place to start. You want to know what is routing, switching, DNS resolution on/with firewalls, including reolving and routing public domains in your own infrastructure.
Quote from: cookiemonster on August 23, 2022, 05:32:34 PM2. make a diagram that connects boxes that then you can identify ip addresses and ports for. Most firewall/network forums will more easily see where you might have a mistake. They tend to talk on that level. Currently nobody can see your setup's topology. Your posts will be likely to have more helpful responses when they a) have a "clear picture" what you have and could do, b) don't get put off by trying to tease bits of information out of you that they would rightly expect to be clearer from the start.
Quote from: cookiemonster on August 23, 2022, 05:32:34 PM3. with that, you can then ask separate questions if required. ie. "I'm trying to route mydomain.cloudflare.com to my local server on the lan with ip 172.26.27.5 running Apache/nginx, my wan is on ipv4 dynamic, do I put my pass rule in the WAN or LAN interface?"
Quote from: cookiemonster on August 23, 2022, 05:32:34 PM4. try to make your post more generic. What is swag? Don't assume OPN users are familiar with that or a piece of software/hardware you have in your mix.
## Version 2021/05/18
# make sure that your dns has a cname set for guacamole and that your guacamole container is not using a base url
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name guaca.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf
#include /config/nginx/ldap.conf;
# enable for Authelia
#include /config/nginx/authelia-server.conf;
location / {
# enable the next two lines for http auth
#auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth
#auth_request /auth;
#error_page 401 =200 /ldaplogin;
# enable for Authelia
#include /config/nginx/authelia-location.conf;
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app ApacheGuacamole;
set $upstream_port 7575;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
proxy_buffering off;
}
}
[error] 8002#8002: *6 connect() failed (111: Connection refused) while connecting to upstream, client: xxx.xx.xx.xxx, server: guaca.*, request: "GET / HTTP/2.0", upstream: "http://172.18.0.2:7575/", host: "guaca.xxxxxx.io"