[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2016-08-19 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: network-manager-vpnc (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2015-04-20 Thread Lonnie Lee Best
In the new version of nmcli (version 0.9.10.0), you can disconnect all
VPN connections with the following command:

nmcli connection show --active | grep vpn | grep -oP
.{8}-.{4}-.{4}-.{4}-.{12} | xargs -L1 nmcli con down uuid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2015-03-05 Thread Bug Watch Updater
** Changed in: network-manager
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2014-07-07 Thread Lonnie Lee Best
If you are connected to a VPN, this command will return a list of established 
VPN connections:
nmcli con status | grep -oP '^(([^\s]+\s){1,}[\s]{2,}){4}yes.+$'

This command will list the IDs of any established vpn connections (one per 
line):
nmcli con status | grep -oP '^(([^\s]+\s){1,}[\s]{2,}){4}yes.+$' | grep -oP 
'^.*?(?=\s{2,})'

So to disconnect all VPN connections you could do it based on this ID like this:
nmcli con status | grep -oP '^(([^\s]+\s){1,}[\s]{2,}){4}yes.+$' | grep -oP 
'^.*?(?=\s{2,})' | sed 's/^/\x27/' | sed 's/$/\x27/' | xargs -L1 nmcli con down 
id

However, perhaps it is better to do this using the UUIDs.

You can list the UUIDs of all established VPN connections like this:
nmcli con status | grep -oP '^(([^\s]+\s){1,}[\s]{2,}){4}yes.+$' | grep -oP 
'(?=[\s]{2})[^\s]+(?=(\s+[^\s]+){2}\s+yes.*)'

So you can disconnect all established VPN connections by UUID like this:
nmcli con status | grep -oP '^(([^\s]+\s){1,}[\s]{2,}){4}yes.+$' | grep -oP 
'(?=[\s]{2})[^\s]+(?=(\s+[^\s]+){2}\s+yes.*)' | xargs -L1 nmcli con down uuid

Perhaps this logic could be added to nmcli, so that this following proposed 
option would concisely achieve the same results:
nmcli con down allvpn

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2014-07-07 Thread Lonnie Lee Best
** Bug watch added: GNOME Bug Tracker #732826
   https://bugzilla.gnome.org/show_bug.cgi?id=732826

** Changed in: network-manager
   Importance: Undecided = Unknown

** Changed in: network-manager
   Status: New = Unknown

** Changed in: network-manager
 Remote watch: None = GNOME Bug Tracker #732826

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2014-07-07 Thread Bug Watch Updater
** Changed in: network-manager
   Status: Unknown = New

** Changed in: network-manager
   Importance: Unknown = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2014-07-07 Thread Lonnie Lee Best
Upstream: 
https://bugzilla.gnome.org/show_bug.cgi?id=732826

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1338382] Re: nmcli - Disconnect VPN Without Specifying ID or UUID

2014-07-06 Thread Lonnie Lee Best
** Also affects: network-manager
   Importance: Undecided
   Status: New

** Also affects: network-manager-openvpn
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1338382

Title:
  nmcli - Disconnect VPN Without Specifying ID or UUID

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1338382/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs