Changeset fe064f9 in freewrt for package/Config.in.runtime


Ignore:
Timestamp:
Oct 16, 2006, 12:45:15 PM (19 years ago)
Author:
Markus Wigge <markus@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
0a53ba2
Parents:
7ab3cbf
Message:

merged dropbear runtime config with trunk

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@932 afb5a338-a214-0410-bd46-81f09a774fd1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/Config.in.runtime

    r7ab3cbf rfe064f9  
    1919          - Leave empty to disable password login
    2020
     21
     22choice
     23prompt "SSH password login configuration"
     24
     25config FWRT_RUNTIME_SSH_DISABLE_PASSWORD_FOR_ROOT
     26        bool "Disable password logins as root"
     27        help
     28          With this selection only non-root users are allowed to login
     29
     30          root     -> with key only
     31          non-root -> with password and key
     32
     33          USE WITH CARE!
     34          PASSWORD LOGINS AS ROOT ARE NOT SAFE IN THE INTERNET.
     35
     36config FWRT_RUNTIME_SSH_DISABLE_NOTHING
     37        bool "Enable password login for root and non-root users"
     38        help
     39          With this selection all users are allowed to login with password
     40
     41          root     -> with password and key
     42          non-root -> with password and key
     43
     44          USE WITH CARE!
     45          PASSWORD LOGINS AS ROOT ARE NOT SAFE IN THE INTERNET.
     46
     47config FWRT_RUNTIME_SSH_DISABLE_PASSWORD
     48        bool "Disable password logins"
     49        help
     50          If you select this you will only be able to login using your supplied
     51          public key. Password logins will be disabled.
     52
     53          root     -> with key only
     54          non-root -> with key only
     55
     56          THIS REQUIRES YOU TO PROVIDE AN SSH PUBLIC KEY!
     57
     58config FWRT_RUNTIME_SSH_DISABLE_ROOT
     59        bool "Disable root logins"
     60        help
     61          With this selection only non-root users are allowed to login
     62
     63          root     -> not allowed
     64          non-root -> with password and key
     65
     66#config FWRT_RUNTIME_SSH_DISABLE_ROOT_AND_PASSWORD
     67#       bool "Disable root logins and password logins"
     68#       help
     69#         With this selection only non-root users are allowed to login
     70#         and only with public key.
     71#
     72#         root     -> not allowed
     73#         non-root -> with key only
     74
     75endchoice
     76
     77
    2178config FWRT_RUNTIME_SSHKEY
    2279        string "SSH public key (root user only)"
     
    2582          Paste your generated SSH public key here and it will be embedded into
    2683          the built image, so you can use it to login instantly.
    27 
Note: See TracChangeset for help on using the changeset viewer.