I'm using Catalina 10.15.7 (19H114). I have a Linux box connected to the same router my Macbook is connected to. Their IP addresses is on the 192.168.1.0 network.
My Linux box has a few Docker containers running on a private 192.168.33.0 network. I want my Mac to be able to connect to that Linux network.
How can I accomplish that?
My vague understanding of how IP routing works tells me that I have to add a route on my Mac such as:
network: 192.168.33.0
netmask: 255.255.255.0
gateway: my linux IP address
Do I have to use the route command on my Mac, or is there anything else I can use - preferably a GUI tool maybe? Also, do I need to change anything on my Linux box to allow outside connections to its Docker containers?
My Linux box has a few Docker containers running on a private 192.168.33.0 network. I want my Mac to be able to connect to that Linux network.
How can I accomplish that?
My vague understanding of how IP routing works tells me that I have to add a route on my Mac such as:
network: 192.168.33.0
netmask: 255.255.255.0
gateway: my linux IP address
Do I have to use the route command on my Mac, or is there anything else I can use - preferably a GUI tool maybe? Also, do I need to change anything on my Linux box to allow outside connections to its Docker containers?