Skip to content

Instantly share code, notes, and snippets.

View n370's full-sized avatar

Dylson Valente Neto n370

View GitHub Profile
@n370
n370 / openconnect.md
Created June 24, 2020 20:54 — forked from moklett/openconnect.md
OpenConnect VPN on Mac OS X

Unfortunately, the Cisco AnyConnect client for Mac conflicts with Pow. And by "conflicts", I mean it causes a grey-screen-of-death kernel panic anytime you connect to the VPN and Pow is installed.

As an alternative, there is OpenConnect, a command-line client for Cisco's AnyConnect SSL VPN.

Here's how to get it set up on Mac OS X:

  1. OpenConnect can be installed via homebrew:

     brew update
    

brew install openconnect

# Based on https://gist.github.com/fernandoaleman/5083680
# Start the old vagrant
$ vagrant init ubuntu_saucy
$ vagrant up
# You should see a message like:
# [default] The guest additions on this VM do not match the install version of
# VirtualBox! This may cause things such as forwarded ports, shared
# folders, and more to not work properly. If any of those things fail on
@n370
n370 / convert.sh
Created March 2, 2016 08:34 — forked from anonymous/convert.sh
Convert WAV file to MP3 using FFMPEG
#!/bin/bash
ffmpeg -i FILE.WAV -ab 192k FILE.mp3