Giter VIP home page Giter VIP logo

rtl8821au's Introduction

rtl8821AU

Linux Driver for USB WiFi Adapter using Realtek 8821AU

This is my personal attempt to let Buffalo WI-U2-433DHP working on my Raspberry Pi 2 and CentOS 7.3.1611. And, it works!

Known Linux Distros

  • CentOS 7.3.1611

Known Devices

Eduroam

For connecting to "eduroam" network, use the following configuration in /etc/wpa_supplicant/wpa_supplicant.conf.

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel

network={
    ssid="eduroam"
    scan_ssid=1
    key_mgmt=WPA-EAP
    eap=TLS
    pairwise=CCMP
    group=CCMP
    phase2="auth=MSCHAPV2"
    identity="<Your Email Address>"
    ca_cert="<CA Certificate>"
    client_cert="<Your Ceritificate>"
    private_key="<Your Decrypted Private Key>"
}

You often get the certificate in form of PKCS12 in a .p12 file, for example youremail.p12. To get the required files for the above configuration, you can use the following command on Linux.

To get the "CA Certificate",

openssl pkcs12 -in youremail.p12 -nokeys -cacerts -out ca.pem

To get "Your Ceritificate",

openssl pkcs12 -in youremail.p12 -nokeys -clcerts -out youremail.crt.pem

To get "Your Decrypted Private Key",

openssl pkcs12 -in youremail.p12 -nocerts -out youremail.key.pem

openssl rsa -in youremail.key.pem -out youremail.dkey.pem

rtl8821au's People

Contributors

mrcuongnv avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.