Switching

 View Only
last person joined: 3 days ago 

Ask questions and share experiences about EX and QFX portfolios and all switching solutions across your data center, campus, and branch locations.
  • 1.  login class custom

    Posted 06-08-2010 00:41

    Greetings to all! How to create the user with the limited rights?
    Help please

     

    permissions all;
    deny-configuration system;

     

    deny access system - tru

     

    ------------------------------------

    It is necessary to add

    - deny protocols

    - deny ethernet-swit-opt

    - deny routing-options



  • 2.  RE: login class custom
    Best Answer

    Posted 06-08-2010 07:25

    Hi,

     

    lab@Core-080-012-BACKROW# show system login
    class test {
        permissions all;
        deny-configuration "system|protocols|routing-options|ethernet-switching-options";
    }

     

    user test {
        uid 2003;
        class test;
        authentication {
            encrypted-password "$1$D.0Imnh3$Xv1/McVVz6yUkx91FUPJs."; ## SECRET-DATA
        }
    }

     

    Kind Regards

    Michael Pergament

     

    If this worked for you please flag my post as an "Accepted Solution" so others can benefit. A kudo would be cool if you think I earned it.



  • 3.  RE: login class custom

    Posted 06-09-2010 00:07

    Big thanks !!!!