Network grayed

Hi everybody.

Could you tell me why network configuration is grayed?

In configuration.yaml I have “default_config:” and even tried to add “network:” but configuration stays grayed…

You must have configured it in configuration.yaml in some way. As the screenshot says

“L’éditeur est désactivé car la configuration est stockée dans configuration.yaml.” or in english
“Editor disabled because config stored in configuration.yaml.”.

Post your configuration.yaml so we can see if there’s something going on there. :slight_smile:

Here it is:

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

conversation:

calendar:

# Example configuration.yaml entry
network:

# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
  ssl_certificate: /ssl/fullchain.pem
  ssl_key: /ssl/privkey.pem
  ip_ban_enabled: True
  login_attempts_threshold: 3

device_tracker:
  - platform: ping
    interval_seconds: 30
    consider_home: 180
    hosts:
      fred_phone: 192.168.1.43
  - platform: bluetooth_tracker
    consider_home: 180
    interval_seconds: 30
    new_device_defaults:
      track_new_devices: false
    
homeassistant:
  customize: !include customize.yaml
  time_zone: Europe/Paris
  
mqtt: 
  broker: core-mosquitto 
  discovery: true

frontend:
  themes: !include_dir_merge_named themes
  
ifttt:
  key: !secret ifttt_key
  
telegram_bot:
  - platform: polling
    api_key: !secret telegram_api_key
    allowed_chat_ids:
      - !secret telegram_chat_id
      
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
sensor: !include sensor.yaml
binary_sensor: !include binary_sensor.yaml
notify: !include notify.yaml
recorder: !include recorder.yaml
zone: !include zone.yaml

It is this bit that disables the network configuration UI. There is no alternative if you use customize, other then to configure the internal and external url there too if that is what you were looking to do.

1 Like

hello @coubi64

@Edwin_D is wrong, its not customize that is the problem but the “time_zone” section,

remove it from your configuration.yaml, you will ne able to have network ungrayed and you could set time_zone in your UI.

I have the same problem and remove, time_zone, elevation, and still have customize in my configuration.yaml and it works…ungrayed the network option…

Nice day

1 Like