Hello, I have a weird issue and have no clue what to do to fix this. Hopefully someone here can help.
I have two alpine LXC containers - it doesn't matter what they're for, but in my use case one of them is an AdGuardHome DNS server (192.168.0.204), the other is a caddy reverse proxy (192.168.0.99).
The VLAN is configured as such:
InOpenWrt:
In Proxmox:
Also, the Firewall on Proxmox is disabled on the Datacenter, Node and LXC.
A simplified topology of my network:
I use NAT to redirect all DNS requests to my local DNS. To allow DNS from clients from the same network, I removed the 192.168.0.0/24 route:
This causes pings from `192.168.0.99` to `192.168.0.204` to fail:
And even though my OpenWrt router's firewall does not block it, I cannot ssh to `192.168.0.5` from `192.168.1.50`; however I can ssh to `192.168.1.5` from `192.168.1.50`. I've already asked on the OpenWrt forums for help, but was told that this is not a router issue (for reference, here is the OpenWrt thread https://forum.openwrt.org/t/routing...ssh-using-vlan-and-dns-port-forwarding/189121)
I have two alpine LXC containers - it doesn't matter what they're for, but in my use case one of them is an AdGuardHome DNS server (192.168.0.204), the other is a caddy reverse proxy (192.168.0.99).
The VLAN is configured as such:
InOpenWrt:
In Proxmox:
Code:
~# cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eno1 inet manual
auto vmbr0
iface vmbr0 inet manual
bridge-ports eno1
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4092
auto vmbr0.10
iface vmbr0.10 inet static
address 192.168.0.5/24
gateway 192.168.0.1
Also, the Firewall on Proxmox is disabled on the Datacenter, Node and LXC.
A simplified topology of my network:
I use NAT to redirect all DNS requests to my local DNS. To allow DNS from clients from the same network, I removed the 192.168.0.0/24 route:
Diff:
dns:~# ip route
default via 192.168.0.1 dev eth0 metric 202
-192.168.0.0/24 dev eth0 scope link src 192.168.0.204
Code:
caddy:~# ip route
default via 192.168.0.1 dev eth0 metric 202
192.168.0.0/24 dev eth0 scope link src 192.168.0.99
This causes pings from `192.168.0.99` to `192.168.0.204` to fail:
Code:
caddy:~# ping 192.168.0.204
PING 192.168.0.204 (192.168.0.204): 56 data bytes
--- 192.168.0.204 ping statistics ---
3 packets transmitted, 0 packets received, 100% packet loss
caddy:~# traceroute 192.168.0.204
traceroute to 192.168.0.204 (192.168.0.204), 30 hops max, 46 byte packets
1 * * *
...
And even though my OpenWrt router's firewall does not block it, I cannot ssh to `192.168.0.5` from `192.168.1.50`; however I can ssh to `192.168.1.5` from `192.168.1.50`. I've already asked on the OpenWrt forums for help, but was told that this is not a router issue (for reference, here is the OpenWrt thread https://forum.openwrt.org/t/routing...ssh-using-vlan-and-dns-port-forwarding/189121)
Last edited: