We're bringing up an OS X system for graphics work. The machine needs to be able to ftp to our imagesetter, which due to licensing restrictions has a hard-wired IP address that is outside of or subnet range and cannot be changed. Our old computer, running Tenon's MachTen, was able to talk to the imagesetter by the addition of a route command in /etc/rc.local. This isn't working well in OS X. First of all, issuing a route command in terminal isn't quite working:
%route add -iface dest_address my_address
This seems to add a route, because netstat -r reveals (after a long pause):
Destination Gateway Flags Refs Use Netif Expire
dest_address my_address UHS 0 0 en0
However, traceroute -r dest_address yields "Network is unreachable."
Reading up on routed, I added the following /etc/gateways file:
host dest_address gateway my_address metric 0 passive
This also does nothing. Help!
%route add -iface dest_address my_address
This seems to add a route, because netstat -r reveals (after a long pause):
Destination Gateway Flags Refs Use Netif Expire
dest_address my_address UHS 0 0 en0
However, traceroute -r dest_address yields "Network is unreachable."
Reading up on routed, I added the following /etc/gateways file:
host dest_address gateway my_address metric 0 passive
This also does nothing. Help!