mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 01:04:51 +02:00
Allow to set the initial super admin username / password in server config file. Ref #1857
This commit is contained in:
parent
fffbb08a8e
commit
f416d64042
@ -64,6 +64,14 @@ user = gns3
|
|||||||
; Password for HTTP authentication.
|
; Password for HTTP authentication.
|
||||||
password = gns3
|
password = gns3
|
||||||
|
|
||||||
|
; Initial default super admin username
|
||||||
|
; It cannot be changed once the server has started once
|
||||||
|
default_admin_username = "admin"
|
||||||
|
|
||||||
|
; Initial default super admin username
|
||||||
|
; It cannot be changed once the server has started once
|
||||||
|
default_admin_password = "admin"
|
||||||
|
|
||||||
; Only allow these interfaces to be used by GNS3, for the Cloud node for example (Linux/OSX only)
|
; Only allow these interfaces to be used by GNS3, for the Cloud node for example (Linux/OSX only)
|
||||||
; Do not forget to allow virbr0 in order for the NAT node to work
|
; Do not forget to allow virbr0 in order for the NAT node to work
|
||||||
allowed_interfaces = eth0,eth1,virbr0
|
allowed_interfaces = eth0,eth1,virbr0
|
||||||
|
@ -19,6 +19,7 @@ from sqlalchemy import Table, Boolean, Column, String, ForeignKey, event
|
|||||||
from sqlalchemy.orm import relationship
|
from sqlalchemy.orm import relationship
|
||||||
|
|
||||||
from .base import Base, BaseTable, generate_uuid, GUID
|
from .base import Base, BaseTable, generate_uuid, GUID
|
||||||
|
from gns3server.config import Config
|
||||||
from gns3server.services import auth_service
|
from gns3server.services import auth_service
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
@ -50,9 +51,12 @@ class User(BaseTable):
|
|||||||
@event.listens_for(User.__table__, 'after_create')
|
@event.listens_for(User.__table__, 'after_create')
|
||||||
def create_default_super_admin(target, connection, **kw):
|
def create_default_super_admin(target, connection, **kw):
|
||||||
|
|
||||||
hashed_password = auth_service.hash_password("admin")
|
config = Config.instance().settings
|
||||||
|
default_admin_username = config.Server.default_admin_username
|
||||||
|
default_admin_password = config.Server.default_admin_password.get_secret_value()
|
||||||
|
hashed_password = auth_service.hash_password(default_admin_password)
|
||||||
stmt = target.insert().values(
|
stmt = target.insert().values(
|
||||||
username="admin",
|
username=default_admin_username,
|
||||||
full_name="Super Administrator",
|
full_name="Super Administrator",
|
||||||
hashed_password=hashed_password,
|
hashed_password=hashed_password,
|
||||||
is_superadmin=True
|
is_superadmin=True
|
||||||
@ -96,7 +100,7 @@ def add_admin_to_group(target, connection, **kw):
|
|||||||
user_group_id = result.first().user_group_id
|
user_group_id = result.first().user_group_id
|
||||||
|
|
||||||
users_table = User.__table__
|
users_table = User.__table__
|
||||||
stmt = users_table.select().where(users_table.c.username == "admin")
|
stmt = users_table.select().where(users_table.c.is_superadmin.is_(True))
|
||||||
result = connection.execute(stmt)
|
result = connection.execute(stmt)
|
||||||
user_id = result.first().user_id
|
user_id = result.first().user_id
|
||||||
|
|
||||||
|
@ -134,6 +134,8 @@ class ServerSettings(BaseModel):
|
|||||||
user: str = None
|
user: str = None
|
||||||
password: SecretStr = None
|
password: SecretStr = None
|
||||||
enable_http_auth: bool = False
|
enable_http_auth: bool = False
|
||||||
|
default_admin_username: str = "admin"
|
||||||
|
default_admin_password: SecretStr = SecretStr("admin")
|
||||||
allowed_interfaces: List[str] = Field(default_factory=list)
|
allowed_interfaces: List[str] = Field(default_factory=list)
|
||||||
default_nat_interface: str = None
|
default_nat_interface: str = None
|
||||||
allow_remote_console: bool = False
|
allow_remote_console: bool = False
|
||||||
|
Loading…
Reference in New Issue
Block a user