summaryrefslogtreecommitdiff
path: root/scripts/ppp-on-rsh
diff options
context:
space:
mode:
authorAdi Masputra <adi.masputra@sun.com>2000-01-24 23:05:14 +0000
committerAdi Masputra <adi.masputra@sun.com>2000-01-24 23:05:14 +0000
commit1eab64facac53aa1b3ca29584ac8296bcc4eb6fb (patch)
tree7ed674565d820d3c75d8a621fbf3bae69e2870e3 /scripts/ppp-on-rsh
parent153580fa5663789d0e1be6ddba953dced82c08d0 (diff)
downloadppp-1eab64facac53aa1b3ca29584ac8296bcc4eb6fb.tar.gz
Added some sample scripts and options files for connecting PPP
over rsh and ssh, along with short descriptions in README
Diffstat (limited to 'scripts/ppp-on-rsh')
-rwxr-xr-xscripts/ppp-on-rsh72
1 files changed, 72 insertions, 0 deletions
diff --git a/scripts/ppp-on-rsh b/scripts/ppp-on-rsh
new file mode 100755
index 0000000..fbe775f
--- /dev/null
+++ b/scripts/ppp-on-rsh
@@ -0,0 +1,72 @@
+#!/bin/ksh
+#
+# A sample script to establish PPP session(s) via rsh
+#
+# Adi Masputra <adi.masputra@sun.com>
+# Jan 24, 2000
+#
+
+#
+# You'd definitely want to change the following addresses to suit
+# your network configuration
+#
+LOC_IP=10.0.0.1
+REM_IP=10.0.0.2
+NETMASK=255.255.0.0
+
+export LOC_IP REM_IP
+
+#
+# This is the remote peer where in.rshd is running, either
+# its hostname or IP address
+#
+PPPD_RHOST=myremotehost
+
+#
+# For this example, we assume that pppd on both local and remote
+# machines reside in the same place, /usr/local/bin/pppd
+#
+PPPD_LOC=/usr/local/bin/pppd
+
+#
+# The location of local options file (where rsh client is running).
+# Note that the sample options file included in the distribution
+# may need further customizations, depending on your needs. The 'noauth'
+# option specified in the file is there to simplify the example. In
+# reality, you'd probably want to remove such option.
+#
+PPPD_LOC_OPT=/etc/ppp/options-rsh-loc
+
+#
+# The location of remote options file (where in.rshd daemon is running).
+# Note that the sample options file included in the distribution
+# may need further customizations, depending on your needs. The 'noauth'
+# option specified in the file is there to simplify the example. In
+# reality, you'd probably want to remove such option. Also note that
+# the remote options file need to include the 'notty' option for this
+# to work
+#
+PPPD_REM_OPT=/etc/ppp/options-rsh-rem
+
+#
+# The location of rsh client on the local machine
+#
+RSH_LOC=/bin/rsh
+
+export PPPD_LOC PPPD_LOC_OPT PPPD_REM_OPT PPPD_RHOST RSH_LOC
+
+#
+# Uncomment the following to enable IPv6, note that the IPv6 support
+# needs to be enabled during compilation
+#
+# PPPD_IPV6='+ipv6 ipv6cp-use-ipaddr'
+export PPPD_IPV6
+
+#
+# And execute pppd with the pty option, specifying rsh client as the
+# slave side of the pseduo-tty master/slave pair.
+#
+exec $PPPD_LOC \
+ pty '$RSH_LOC $PPPD_RHOST $PPPD_LOC $REM_IP:$LOC_IP $PPPD_IPV6 file $PPPD_REM_OPT' \
+ $LOC_IP:$REM_IP netmask $NETMASK $PPPD_IPV6 file $PPPD_LOC_OPT
+