06-04-2012 11:54 AM
Does anyone know the Console/vty login session inactivity timeout by default at SRX650? How to configure it? thanks.
YL
06-04-2012 08:47 PM
Hi ,
From KB20967 :
root@juniper>show cli
CLI complete-on-space set to on
CLI idle-timeout disabled
If you want the users to disconnect after some time, configure the idle timeout according to your requirements using the following command:
root@juniper> set cli idle-timeout ?
Possible completions:
<timeout> Maximum idle time (0..100000 minutes)
When you login to the device you will see the idle-time is disabled.root@juniper> set cli idle-timeout 60
Idle timeout set to 60 minutes
root@juniper> show cli
CLI complete-on-space set to on
CLI idle-timeout set to 60 minutes
root@juniper% exit
root@juniper> run show cli
CLI complete-on-space set to on
CLI idle-timeout disabled
[edit system login]
root# show
class test {
idle-timeout 1;
permissions all;
}
user user {
uid 2006;
class test;
authentication {
encrypted-password "$1$ZBez9s7.$cR93T3DyYcrBXwPQ.2XNe1"; ## SECRET-DATA
}
}user@juniper> show cli CLI complete-on-space set to on CLI idle-timeout set to 1 minute
06-05-2012 10:57 AM
thanks Pradeep.
YL