1. 192.168.1.0/24 (interface ether2)
2. 192.168.0.0/24 (interface ether10)
I’d like to print to an HP P2055dn printer at 192.168.1.100 (static IP) from the second network on ether10.
Here’s what I’ve done with the firewall:
Code: Select all
add chain=forward comment="hp printer access" dst-address=192.168.1.100 in-interface=ether10 \
out-interface=ether2 src-address=192.168.0.0/24
add chain=forward comment="hp printer access" connection-state=established dst-address=\
192.168.0.0/24 in-interface=ether2 out-interface=ether10 src-address=192.168.1.100
Thank you.