0

I need to access 192.168.9.0/24 from 192.168.1.0/24 only one direction. I tried using ssh tunneling over raspberry pi(10.8.0.2) but this is not an exact solution for me.

Operating system of the raspberry pi is Raspbian GNU/Linux 9.1 (stretch) Raspberry pi hardware: model B

See: My Network diagram

Can anybody help me? Thanks.

Nakini
  • 107
  • 1
  • 1
  • 4
H.Selek
  • 1
  • 2
  • I think I might help (and I guess others might as well) but… What is your question/need/problem? – user2233709 May 18 '18 at 22:28
  • Make NAT from 192.168.1.0/24  network to 192.168.9.0/24 network on 10.8.0.1 router. Also add ip route to 192.168.9.0/24  network via 10.8.0.2 there. – Mikhail Khirgiy May 19 '18 at 04:42
  • Additionally I made nat on Raspberry pi side as below and problem solved. iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -d 192.168.9.0/24 -o br0 -j SNAT --to-source 192.168.9.100 – H.Selek May 20 '18 at 02:50

0 Answers0