I am attempting to set ether1 to a static ip that routes traffic to the gateway of the subnet it is connected to. The 172 address on ether2 only exists to provide pptp access to the 172.0.0.0 subnet. I know I am doing something wrong in the below commands, but I do not know what! Any tips or links to an article would be very welcome!
ether1 is connected to the 192.168.0.X network, and routes out through 192.168.0.1
ether2 is connected to the 172.0.0.X network and has 172.0.0.1 as the gateway, to provide ip connectivity to pptp clients connected the 750 who connect expressly to access the 172.0.0.X network.
ether3 is the gateway for the 10.0.0.X network and NAT out 192.168.0.2
add address=192.168.0.2/29 disabled=no interface=ether1 network=192.168.0.1
add address=172.0.0.2/24 disabled=no interface=ether2 network=172.0.0.1
add address=10.0.0.1/24 disabled=no interface=ether3 network=10.0.0.0
add address=172.1.1.1/24 disabled=no interface=vpn01 network=172.1.1.0
/ip route add gateway=192.168.0.1
Thanks for any help, tips or links!