Mac PPP server
From ShawnReevesWiki
In order to provide internet service to the modem of our old TiVo, I made an applescript that ran a shell script to forward its internet connection to a serial port.
We've arvried at the end of the line and I have what I need!
Apple Script
Pulling all together into an Apple Script app:
set pppdTivoScript to "LocalHostIP=`ifconfig | grep 'inet 172' | awk '{ print $2 }'`; KeyspanPort=`ls /dev | grep USA | grep cu`; echo \"Sharing ip connection from $LocalHostIP via pppd\"; /usr/sbin/pppd dump noauth proxyarp /dev/$KeyspanPort 115200 $LocalHostIP:172.16.1.38 passive local maxfail 0 nocrtscts xonxoff" set scriptresult to do shell script pppdTivoScript with administrator privileges display dialog "Output of pppdTiVoScript:" & return & scriptresult
Still to do
- Generalize the apple script or shell script to find out what the router's address-range is and use that instead of assuming it's 172.etc.
- Split pppdTivoScript into parts and parse the scriptresults in Apple Script, giving the user feedback along the way.
- OR leave out the local address, PPPD will take the first address of the computer which is usually right.
- Make sure the IP address assigned to the serial port is unique but still in the router's range. It might not be possible to find out which addresses are taken.
- Only grep the "en[0-9]:" lines and the 5 that follow them (use option "-A 5"), since you could have all sorts of other IP addresses for loopback and virtual systems (like Parallels Desktop). Then grep the inet lines from that.:
ifconfig | grep -A 5 "en[0-9]:" | grep -o "inet .* netmask .* broadcast .*"
- The assigned ip address should be much higher than inet, fit in netmask, and be lower than broadcast. This could be dangerous in a large network where you don't know all the clients, so only do this at home or if you know the upper limits of the clients' addresses.
- OR use an IP address in the private network range so that there won't be any possible interference, unless we unfortunately choose the same private network range that's currently being served to the host by the network it's on.
References
- Connecting two modems via ppp, as in Tivo to Mac
For reference, here are detailed instructions on how to do this with a PC:http://home.elp.rr.com/terlouw/DCWinMEServer.htm Also:http://www.tivohelp.com/archive/tivohelp.swiki.net/45.html
On a mac:http://www.linuxquestions.org/questions/showthread.php?t=131653
- To execute shell scripts in Applescript
- http://developer.apple.com/technotes/tn2002/tn2065.html
- A similar method to share a network connection through bluetooth
- http://blog.interlinked.org/mobile/bt_sharing.html
Using a System 7 Mac as a ppp-over-serial client. http://retromaccast.ning.com/forum/topics/1672786:Topic:31192