2017-08-26 13:55:10 -06:00
|
|
|
#!/bin/bash
|
|
|
|
# identifier: Captive Portal
|
2017-08-26 16:14:11 -06:00
|
|
|
# description: Crea un punto di accesso "gemello cattivo".
|
2017-08-26 13:55:10 -06:00
|
|
|
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2017-09-02 14:17:45 -06:00
|
|
|
CaptivePortalInterfaceQuery="Select an interface for the captive portal."
|
|
|
|
CaptivePortalStartingInterfaceNotice="Starting captive portal interface..."
|
|
|
|
CaptivePortalCannotStartInterfaceError="${CRed}Unable to start captive portal interface$CClr, returning!"
|
|
|
|
CaptivePortalStartedInterfaceNotice="${CGrn}Success${CClr}, captive portal interface ready!"
|
2017-08-27 03:06:35 -06:00
|
|
|
CaptivePortalStaringAPServiceNotice="Avvio del servizio del Portale di Cattura..."
|
|
|
|
CaptivePortalStaringAPRoutesNotice="Avvio access point del Portale di Cattura..."
|
|
|
|
CaptivePortalStartingDHCPServiceNotice="Avvio del servizio DHCP..."
|
|
|
|
CaptivePortalStartingDNSServiceNotice="Avvio del servizio DNS..."
|
|
|
|
CaptivePortalStartingWebServiceNotice="Avvio del servizio del Portale WEB..."
|
|
|
|
CaptivePortalStartingJammerServiceNotice="Avvio del servizio di JAMMING..."
|
|
|
|
CaptivePortalStartingAuthenticatorServiceNotice="Avvio Script di Autenticazione..."
|
2017-08-26 13:55:10 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
CaptivePortalVerificationMethodQuery="MODALITA' DI VERIFICA DELLA PASSWORD"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2017-08-27 03:06:35 -06:00
|
|
|
CaptivePortalCertificateSourceQuery="Seleziona il certificato SSL"
|
|
|
|
CaptivePortalCertificateSourceGenerateOption="Crea il certificato SSL"
|
|
|
|
CaptivePortalCertificateSourceRescanOption="Identifica il certificato SSL (${CClr}cerca ancora$CGry)"
|
2017-09-02 14:17:45 -06:00
|
|
|
CaptivePortalUIQuery="Seleziona l'intefaccia del Portale di Cattura"
|
2017-08-27 03:06:35 -06:00
|
|
|
CaptivePortalGenericInterfaceOption="Portale Generico"
|
2017-08-26 13:55:10 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
|
|
|
|
# FLUXSCRIPT END
|