Platform Notes: SPARCstation Voyager Software Guide

Terminating the Connection

Normally the PPP connection will terminate automatically when the PPP daemon notices the line has been idle for a period longer than the period specified by the inactivity_timeout keyword in the /etc/asppp.cf file. If you want to terminate the connection earlier, you must send the SIGHUP signal to the aspppd daemon.

  1. Find the process ID for aspppd with the ps and grep commands.


    ps -e | grep aspppd
    

    A result similar to the following will appear:


    73?				0:02 aspppd

    The 73 is the process ID number of aspppd.

  2. Send the SIGHUP signal with the kill command.


    kill -HUP 73
    

    The PPP connection is terminated.