Overview of my network
Cable comes in to one ethernet.
ethernet goes to red nic of ipfire
green goes to all wired devices in house. (including NVR 192.168.6.179)
one green wire goes to a wifi router.
(wifi router is 192.168.6.10 on green.
192.168.5.1 on wifi lan, wifi gives out 192.168.5.x on DHCP)
All wifi cameras get a static IP at high end of DHCP IP addesses.
So how do I get traffic from wifi cameras to NVR?
I do have a static route on green. 192.168.5.0/24 → 192.168.6.10
Thank you in advance.
(I write software by trade… I pretend to be my home network administrator.)
Assuming your cameras are WIFI.
You will need Port forward in AP.
Double NAT
And you will need to add cameras manually.
No Auto discovery. do to NAT
This will not be needed if you Turn off DHCP in AP.
Routing Problem Due to Different Subnets
Currently, your Access Point (AP) establishes a different subnet (192.168.5.x) which isn’t directly managed by IPFire, that handles the 192.168.6.x range. This creates a routing problem as IPFire is not aware of the routes necessary to reach the 192.168.5.x subnet directly.
Static Routing from IPFire and AP Side
A solution would be to set up static routes both in IPFire and your AP. You’ve set up a static route in IPFire to direct traffic from the 192.168.5.0/24 network to the 192.168.6.10 (WiFi router). Similarly, you would need to log into your AP’s admin interface and add a static route for directing traffic destined for the 192.168.6.0/24 network through 192.168.6.10, effectively creating a two-way route.
Possible NAT by the AP
Many APs perform Network Address Translation (NAT) by default. In your current setup, the AP might be applying NAT, which isn’t necessary for internal traffic between your subnets. Check the settings in your AP’s firmware to see if NAT is enabled and, if possible, disable it for traffic between your internal networks to simplify routing and avoid potential issues.
Suggesting Bridge Mode for Simplification
Lastly, a straightforward solution would be to configure your AP to work in bridge mode. This change would make IPFire the sole DHCP server (as suggested by @hvacguy), assigning IP addresses to all machines, both wired and wireless, in the 192.168.6.x range. Setting your AP to bridge mode will simplify the network configuration greatly, allowing all devices to communicate within the same subnet without the need for additional routing rules or NAT configurations.
In this last setup:
Devices will communicate using their MAC addresses (data-link layer 2), not IP addresses (network layer 3);
The WiFi router (working in bridge mode) will function to forward frames to the correct destination based on the MAC addresses;
It allows for more direct and efficient communication between devices in your local network.
I hope one of these suggestions would be useful. Let us know how it goes.