Come fermare un server VPN lanciato con vpnd

1

Ho configurato una VPN domestica (L2TP / IPsec nativo di OS X su una macchina 10.13). Apprezzo che il modo consigliato per avviarlo sia tramite launchctl, ma accettando che ho richiamato direttamente vpnd:

sudo /usr/sbin/vpnd -d -i com.apple.ppp.l2tp

Quale comando fermerebbe il server? La pagina man di vpnd non fornisce informazioni su come arrestare il server.

    
posta jbjo 26.07.2018 - 23:44
fonte

1 risposta

0

Due modi per uccidere un processo (cantato al ritmo di "Cinquanta modi per lasciare il tuo amante" )

Primo modo:

  1. Launch Activity Monitor
  2. Locate the daemon/process you want to halt (vpnd in this case), and select it (white letters on blue field)
  3. Click the x button in the ULHC, Force a process to quit
  4. Confirm by clicking Quit, or Force Quit if it's stubborn :)

Secondo modo: Se ti piace la riga di comando, perché non utilizzare kill ? vedere man kill

  1. Get the PID for your daemon vpnd: ps -ax | grep vpnd,
  2. kill PID (where PID of course is the actual PID number)
    
risposta data 27.07.2018 - 01:15
fonte

Leggi altre domande sui tag