Description

This article explains about the error message "error: Only routing-instance supported is mgmt_junos" while executing commit.

Symptoms

When you commit a configuration change on name-server you will observe below error


root@host# commit check 

error: Only routing-instance supported is mgmt_junos

error: Only routing-instance supported is mgmt_junos

error: configuration check-out failed: daemon file propagation failed


Solution

This issue is usually seen when we try to load the configuration after a junos upgrade, or when you add name-server configuration.


system {

  host-name <hostname>;

  name-server {

    10.71.100.126 routing-instance <routing-instance>;

    10.71.100.254 routing-instance <routing-instance>;

  }


Please note that only mgmt_junos instance is supported for name-server, if you use any routing instance other than mgmt_junos commit will be failed.

Please refer the document name-server for more details.


Modification History

2025-02-27 : Article Created