Difference between revisions of "Network Interface Authentication (wpa-suplicant)"

From RHS Wiki
Jump to navigation Jump to search
(Created page with "/etc/network/interfaces auto eth0 iface eth0 inet dhcp wpa-iface eth0 wpa-driver wired wpa-conf /etc/wpa_supplicant.conf")
 
Line 1: Line 1:
 
/etc/network/interfaces
 
/etc/network/interfaces
 
auto eth0
 
auto eth0
iface eth0 inet dhcp
+
iface eth0 inet dhcp
 
     wpa-iface eth0
 
     wpa-iface eth0
 
     wpa-driver wired
 
     wpa-driver wired
 
     wpa-conf /etc/wpa_supplicant.conf
 
     wpa-conf /etc/wpa_supplicant.conf
 +
 +
/etc/wpa_supplicant.conf
 +
ctrl_interface=/var/run/wpa_supplicant
 +
ctrl_interface_group=0
 +
eapol_version=2
 +
ap_scan=0
 +
#fast_reauth=1
 +
network={
 +
    ssid="BBVA"
 +
    key_mgmt=IEEE8021X
 +
    eap=TLS
 +
    identity="host/WF0006D3.ad.bbva.com"
 +
    ca_cert="/NAC/cacert.pem"
 +
    client_cert="/NAC/cert.pem"
 +
    private_key="/NAC/key.pem"
 +
    private_key_passwd="1234567890"
 +
}

Revision as of 12:02, 15 October 2018

/etc/network/interfaces auto eth0

iface eth0 inet dhcp
   wpa-iface eth0
   wpa-driver wired
   wpa-conf /etc/wpa_supplicant.conf

/etc/wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=2
ap_scan=0
#fast_reauth=1
network={
   ssid="BBVA"
   key_mgmt=IEEE8021X
   eap=TLS
   identity="host/WF0006D3.ad.bbva.com"
   ca_cert="/NAC/cacert.pem"
   client_cert="/NAC/cert.pem"
   private_key="/NAC/key.pem"
   private_key_passwd="1234567890"

}