All posts by Don Matteo

lebt in der Schweiz, ist System Engineer MCP bei A-Enterprise GmbH. Mitglied des UNBLOG Knowledge Network. Author und Blogger zu den Themen, Tutorials für Linux und Open Source.

Synology Passwordless login with Secure SignIn

How to Passwordless Secure SignIn by Two-factor authentication on Synology NAS.

Synology extends SignIn with DSM 7 service and integrates identity verification for Two-factor authentication (2FA). In addition to a one-time verification code (OTP). The users can also use login approval or hardware security keys as a second step in two-factor authentication.

Synology Secure SignIn

Android and iOS devices are supported, with the use of an app for the two methods – login approval and one-time verification code (OTP) on a smartphone or tablet. This tutorial shows how to sign up using Login Approval using Synology Secure SignIn.

Requirements

  • iOS: 11.0 or higher
  • Android: 7.0 or higher
  • Screen lock is enabled by default when using Synology Secure SignIn on the mobile device to ensure security
  • Supports the receipt of real-time login requests via push notification on the mobile device
  • Supported without push notification enabled, as long as the user can unlock the device

Enable Secure SignIn

To activate Secure SignIn, go to Security => Account => Secure SignIn Service in the DSM Control Panel.

  • Check Enable Secure SignIn.
  • Sign in to Synology Account.
  • Click Apply to save the settings.
Figure: Synology DSM 7 Control Panel

Click on Personal at the bottom of the note, or via the menu bar at the top right open drop down menu and choose Personal, then scroll down.

Choose the login method Passwordless Sign-In. After a verification of identity with password entry, you will be guided through the setup wizard.

The next time you log in, the code for the registration approval is displayed, which is required for the mobile app.

Mobile App Secure SignIn Login Approval for Passwordless Login, first touch the + above to scan the QR code displayed by the DSM wizard

Synology Secure SignIn Mobile App for Android and iOS devices.

Apple iOS Synology Secure SignInAndroid Synology Secure SignIn

Conclusion

Multi-factor authentication should be easy. With Synology Secure SignIn for passwordless login and 2-factor authentication. It is now possible to log in to the Synology NAS without remembering a password. While being protected against attacks with increased security.

How to find Windows Network Interface Adapter GUID in Registry

show network adapter GUID and find the interface in registry

Windows assigns GUID to each network adapter, where all network adapters, such as the Ethernet adapter, wireless adapter or virtual adapters, and also the Bluetooth device have their own GUID. In case of modify parameters on a network adapter, for example, if there is no option in the network settings, as they cannot be found under the physical adapter type or with adapter name in the registry.

A relatively simple method is the following procedure. The first thing to do is to open the Services console by press the Win+R keys and type services.msc

In the open Windows Services console you start the service Wired AutoConfig if it is not already running.

The next step is to open a command prompt by pressing Win+Rcmd

Network interface adapter GUID

In the command prompt, paste the following command line with copy & paste and press the Enter key.

netsh lan show interfaces
netsh wlan show interfaces

To get the GUID of the wireless adapter, the service WLAN AutoConfig must be started.

The output appears similar to the following, the number of interfaces may vary depending on which hardware and software components the system has.

C:\>netsh lan show interfaces

There is 1 interface on the system:

    Name             : Ethernet
    Description      : Intel(R) Ethernet Connection (7) I219-V
    GUID             : 8b4f4148-7940-4d76-a0dd-00ddf89dff59
    Physical Address : 98-FA-9B-04-5B-59
    State            : Connected. Network does not support authentication.

C:\>netsh wlan show interfaces

There is 1 interface on the system:

    Name                   : WLAN
    Description            : Intel(R) Dual Band Wireless-AC 3165
    GUID                   : a7dd2b68-eaef-42cc-884d-716374b22520
    Physical address       : a0:51:0b:2c:ad:f8
    State                  : disconnected
    Radio status           : Hardware On
                             Software On

As here, all network and wireless adapters are displayed, in the name or description can see which network adapter has which GUID directly below the description.

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetBT\Parameters\Interfaces

Just the GUID now found, the corresponding network adapter can be found in Registry Editor.

Conclusion

In this posting you learn how to Windows assigns GUID to each network adapter, where all network adapters, such as the Ethernet adapter, wireless adapter or virtual adapters, and also the Bluetooth device have their own GUID, so you can find each interface and its GUID.