Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to kill an OpenVPN connection with a Linux command or Perl command?

share|improve this question
This question belongs on serverfault – Jim Garrison Aug 10 '10 at 15:23
but by kill command, in programming kill a connection. but how i ask that. – haw3d Aug 10 '10 at 15:37

4 Answers

system call to the tcpkill program.

share|improve this answer
up vote 1 down vote accepted

hi guys after couple of search, i found a way in endian firewall for disconnect a connection use:

/usr/bin/openvpn-sudo-user kill \"username\"

but first u should disable user i hope for others it's be useful

share|improve this answer

If you are starting OpenVPN automatically as a service at boot time, the cleanest way would be to do:

service openvpn stop

from the command line (or exec it from perl)

/etc/init.d/openvpn stop

You could kill it directly as other suggest, but using the provided method to stop the service will do any addition cleanup that OpenVPN needs (e.g., cleaning up lock files, run pid files, etc.)

AFIAK killing OpenVPN will be fine in the current version, but who knows for a future version.

share|improve this answer

use tcpkill ip host 192.168.1.2

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.