SLIRP for dialup networking On the machine in your house, set up the dialup networking to run something equivalent to following dialup script: (adjust accordingly if not using the Steward modems.) proc main waitfor "word:" transmit $PORTPASSWORD ; current Steward modem password transmit "^M" waitfor ":" transmit "stty term slirp" transmit "^M" waitfor ":" transmit "rlogin canopus.as.arizona.edu" ; your home Sun - NOT ASTRO transmit "^M" waitfor ":" transmit $USERID ; your Sun login name transmit "^M" waitfor ":" transmit $PASSWORD ; your Sun password transmit "^M" waitfor "SLiRP" delay 1 endproc This will set PPP mode and redirect Xwindows (check the DISPLAY variable). XDM is also supported. A .slirprc file is not needed. The machine in your house will be using the bogus IP, 10.0.2.15 (The IP of the slirp process will be 10.0.2.10) (The alias IP of your home Sun will be 10.0.2.2) You should also set up the domain name service on the machine in your house as follows: domain: as.arizona.edu nameserver: 10.0.2.3 If you use 618-3190, use the following script: proc main waitfor "UACATS" waitfor ":" transmit "stty term slirp" transmit "^M" waitfor ":" transmit "rlogin canopus.as.arizona.edu -l " ; your home Sun - NOT ASTRO transmit $USERID transmit "^M" waitfor ":" transmit $PASSWORD ; your Sun password transmit "^M" waitfor "SLiRP" delay 1 endproc After the new 56K modems are installed on 618-3190, use the following script: proc main waitfor "UACATS" waitfor ":" transmit "telnet canopus.as.arizona.edu" ; your home Sun - NOT ASTRO transmit "^M" waitfor ":" transmit $USERID transmit "^M" waitfor ":" transmit $PASSWORD ; your Sun password transmit "^M" waitfor "%" transmit "/l/slirp -P" transmit "^M" waitfor "SLiRP" delay 1 endproc